Jld142
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Force Contact Form 7 send plain text emailsThank you Jason. I will give this a try now and report back ??
Forum: Plugins
In reply to: [Front End PM] Announcements only showing as read by admin usersIssue appears to be resolved.
I would implement this into a full update.This has also resolved my issue where auto suggest wasnt showing.
Great Job !
Forum: Plugins
In reply to: [Front End PM] Announcements only showing as read by admin usersShamim has there been any updates on this ?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Send HTML emailsResolved
Simply add the following to the themes functions.php file.
//Send HTML emails in WordPress Using wp_mail function
add_filter( ‘wp_mail_content_type’, ‘set_content_type’ );
function set_content_type( $content_type ){
return ‘text/html’;
}Forum: Plugins
In reply to: [Front End PM] Announcements only showing as read by admin usersApparently this error is caused because we need to reference particular code via JQuery ? Possible in: front-end-pm/js/script.js
Forum: Plugins
In reply to: [Front End PM] Announcements only showing as read by admin usersHello Shamim, yes i am using the latest version.
If it helps i can see these errors in Chrome Developer mode:
Forum: Plugins
In reply to: [Front End PM] Announcements only showing as read by admin usersThat is strange. It is not working for both my test and prod sites.
Does this depend on anything similar to that of auto suggest ?
Forum: Plugins
In reply to: [W3 Total Cache] CSS Fonts missing – No Access-Control-Allow-Origin header@jgjn151 did you manage to resolve this issue ?
I think this is a W3TC issue, i also get this error but i only use W3TC not NGINX or Cloudfront.
Forum: Fixing WordPress
In reply to: No 'Access-Control-Allow-Origin' headerBump
Forum: Plugins
In reply to: [Front End PM] Auto suggest does not workWell i am not sure where to do from here.
I have no had any issues with my minify script before this and im not entirely sure that is what the issue isForum: Plugins
In reply to: [Ultimate Product Catalog] Move TagsThank you. Issue resolved ??
Forum: Plugins
In reply to: [Ultimate Product Catalog] Move TagsHello,
This is my first experience using tags. They are not alphabetized at all. I decided to add them in alphabetical order as i foresaw this issue however i forgot to add a few hence why they appear at the bottom.
They are displaying in the order i added them.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Move TagsI want my tags to be alphabetized, however they are not.
See the below URL:
https://www.complete-models.com/member-models/?categories=7Forum: Plugins
In reply to: [Front End PM] Auto suggest does not workHello Shamin,
My theme has footer.php which included the following:
<?php /** * The template for displaying the footer. * * @package Pindol * @author Muffin group * @link https://muffingroup.com */ ?> <!-- #Footer --> <footer id="Footer"> <div class="container widgets"> <?php $sidebars_count = 0; for( $i = 1; $i <= 4; $i++ ){ if ( is_active_sidebar( 'footer-area-'. $i ) ) $sidebars_count++; } $sidebar_class = ''; if( $sidebars_count > 0 ){ switch( $sidebars_count ){ case 2: $sidebar_class = 'one-second'; break; case 3: $sidebar_class = 'one-third'; break; case 4: $sidebar_class = 'one-fourth'; break; default: $sidebar_class = 'one'; } } ?> <?php for( $i = 1; $i <= 4; $i++ ){ if ( is_active_sidebar( 'footer-area-'. $i ) ){ echo '<div class="'. $sidebar_class .' column">'; dynamic_sidebar( 'footer-area-'. $i ); echo '</div>'; } } ?> </div> <div class="container"> <div class="column one bottom_addons"> <div class="copyrights"> <p> © <?php echo date( 'Y' ); ?> <strong><?php bloginfo( 'name' ); ?></strong>. <?php _e('All Rights Reserved.','pindol'); ?><br /> <?php _e('Powered by','pindol'); ?> <a target="_blank" href="https://www.ads-software.com">WordPress</a>. <?php _e('Created by','pindol'); ?> <a target="_blank" href="https://themeforest.net/user/muffingroup/portfolio?ref=muffingroup">Muffin group</a> </p> </div> <div class="menu_bottom"> <?php mfn_wp_footer_menu(); ?> </div> </div> </div> </footer> </div> <a id="back_to_top" href="#"><i class="icon-circle-arrow-up"></i></a> <!-- wp_footer() --> <?php wp_footer(); ?> </body> </html>
Does this help ?
bump.
Any ideas ?