icey7
Forum Replies Created
-
Hello,
Thank you for the reply. I have disabled all caching plugins, however the chatbot reverts to default settings once I leave the chatbot settings page.
Any other suggestions would be appreciated.
ThanksHi,
What was the fix? I’m experiencing the same issue — my chatbot settings keep disappearing and reverting back to default.
Thanks!- This reply was modified 1 month, 1 week ago by icey7.
Thank you for the reply, I have fixed the issue.
great, thanks for the tip
I found solution, thanks
Forum: Plugins
In reply to: [New User Approve] Customizing email message bodyHi
Thanks for the tip, you don’t happen to know how I could enable the HTML in just emails sent from your plugin ?
Thanks agin
Forum: Plugins
In reply to: [New User Approve] Customizing email message bodyHi
I found a solution to add HTML into the message body…
Simply add the following after the <?php in php snippet:
add_filter(‘wp_mail_content_type’,create_function(”, ‘return “text/html”; ‘));
Thankyou
Kind RegardsForum: Plugins
In reply to: [New User Approve] Customizing email message bodyHello Josh
I’m following your above example to customize the email body
What change would need to be made, to enable HTML inside the message body ?
Thankyou
Kind RegardsHi
Thankyou for the reply, I have created a support ticket with my web host.
Thanks again.
Forum: Everything else WordPress
In reply to: Simple IF/Else QuestionHey thankyou, I have solved this issue.
Below is the full working code.
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
<div class="postthumbcon"> <?php if ( has_post_thumbnail() ) { $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'large' ); $thumbnailSrc = $src[0]; ?> <div class="postthumb"> <img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo $thumbnailSrc; ?>&h=125&w=165" alt="" /> </div> <?php } else if ( get_post_meta($post->ID, 'thumb', true) ) { ?> <div class="postthumb"> <a>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <img src="<?php bloginfo('template_directory'); ?>/scripts/timthumb.php?src=<?php echo get_post_meta($post->ID, "thumb", $single = true); ?>&h=150&w=150&zc=1" alt="<?php the_title(); ?>" width="150" height="150" /> </a> </div> <?php } ?> </div>thanks again
Forum: Fixing WordPress
In reply to: Custom Field Issueworked out the answer.
<?php if ($arr[$i]["price"] <> '') { ?> <span class="tag"><span><?php echo esc_html($arr[$i]["price"]); ?></span></span> <?php } else { ?> <span class="tag"><span>Sale</span></span> <?php }; ?>thanks
[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: Backdoor in Themes/index.phpThanks I will check those out