Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Martin,
This has been fixed.
You can find patch fix at here: https://github.com/GeoDirectory/geodirectory/pull/463/commits/5f696db18aeccc870d37d5f00da290560cdaf3ce
OR provide FTP credentials to update from by us.Kiran
This reply has been marked as private.May 30, 2018 at 8:56 am in reply to: After latest GeoDirectory update emails not sending correctly #432717If there is a white space between closing and opening tag
(ex: > <)then in html email it replaces as a paragraph tag
<p>.
Just let us know if you find any issue 🙂
Kiran
May 30, 2018 at 4:49 am in reply to: After latest GeoDirectory update emails not sending correctly #432678This reply has been marked as private.Hello,
Try this:
$cv_url = get_permalink( $cv_id ); echo '<a href="' . $cv_url . '">View Worker CV</a>';Kiran
May 29, 2018 at 1:31 pm in reply to: After latest GeoDirectory update emails not sending correctly #432600This reply has been marked as private.May 29, 2018 at 12:20 pm in reply to: After latest GeoDirectory update emails not sending correctly #432583This reply has been marked as private.May 29, 2018 at 11:47 am in reply to: After latest GeoDirectory update emails not sending correctly #432577Hi Dotty,
Thanks for providing credentials. I have looked and found incorrect message content ex: GeoDirectory > Notifications > Listing published email
There are html tags<br /> <p>tags used style text (see attachment). this is incorrect. That’s why it prints style in email.
Remove html tags from style text and also remove any blank space, new line from before opening and after closing tags.
Let us know how it goes.
Kiran
May 29, 2018 at 11:21 am in reply to: How to remove default cover image from Woocommerce detail page #432574<h1 id=”link-modal-title”>Insert/edit link</h1>
Above tag displayed via any plugin, so you have to investigate from which plugin it is displayed.
<h1 class=”entry-title”>What stream should i choose after scoring 85% in CBSE Exams</h1>
To remove above h1 tag search
<h1 class="entry-title">within supreme-directory theme files and replace with tag you want.
Kiran
May 29, 2018 at 9:53 am in reply to: After latest GeoDirectory update emails not sending correctly #432557Hello Dotty,
Are you using any html email customization? Please provide us admin credentials so we can take a look.
Kiran
May 29, 2018 at 9:41 am in reply to: How to remove default cover image from Woocommerce detail page #432554Hi Piyush,
Now, DWQA Category page shows corresponding questions.
Kiran
Send your site admin link & admin credentials, i will take a look.
Kiran
May 29, 2018 at 7:37 am in reply to: How to remove default cover image from Woocommerce detail page #432538This reply has been marked as private.May 29, 2018 at 5:10 am in reply to: How to remove default cover image from Woocommerce detail page #432528This reply has been marked as private.Hi Alex Howes,
Use following code snippet to get listing url from id.
function gd_cv_link( $atts = array(), $content = '' ) { $atts = shortcode_atts( array( 'id' => 0, ), $atts, 'gd_cv_link' ); if ( ! empty( $atts['id'] ) ) { $url = get_permalink( (int)$atts['id'] ); } else { $url = ''; } return $url; } add_shortcode( 'gd_cv_link', 'gd_cv_link' );Usage:
<a href="[gd_cv_link id="273"]">View Worker CV</a>replace 273 with id you want.
Kiran
-
AuthorPosts