montanagrafix
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Menu Editor] Issue not showing a menu item when granted accessThank you, that worked. No, the user does not have any other roles. Thank you for your help.
I haven’t changed themes and it was working before the upgrade. Any suggestions on what in my theme might be causing this?
Forum: Plugins
In reply to: [Comment Guestbook] Guestbook page is not showing messagesSame here – I have 50+ sites that went down last night. Wow, Wordfence, I expect a fix for this soon.
Forum: Plugins
In reply to: [Easy Property Listings] Listing shows triple on the pageI was able to get the layout to look properly by adding a div, but now my featured image is missing. Any ideas on how to get that to reappear?
<?php get_header(); ?> <?php cherry_setPostViews(get_the_ID()); ?> <div class="motopress-wrapper content-holder clearfix"> <div class="container"> <div class="row"> <div class="<?php echo cherry_get_layout_class( 'full_width_content' ); ?>" data-motopress-wrapper-file="single.php" data-motopress-wrapper-type="content"> <div class="row"> <div class="<?php echo cherry_get_layout_class( 'full_width_content' ); ?>" data-motopress-type="static" data-motopress-static-file="static/static-title.php"> <?php get_template_part("static/static-title"); ?> </div> </div> <div class="row"> <div> <div class="<?php echo cherry_get_layout_class( 'content' ); ?> <?php echo of_get_option('blog_sidebar_pos'); ?>" id="content" data-motopress-type="loop" data-motopress-loop-file="loop/loop-single.php"> <?php do_action( 'epl_property_single' ); ?> </div> </div> <div class="<?php echo cherry_get_layout_class( 'sidebar' ); ?> sidebar" id="sidebar" data-motopress-type="static-sidebar" data-motopress-sidebar-file="sidebar.php"> <?php get_sidebar(); ?> </div> </div> </div> </div> </div> </div> <?php get_footer(); ?>
Forum: Plugins
In reply to: [Easy Property Listings] Listing shows triple on the pageI am having this same issue using a Cherry theme, do you have any suggestions on what I should remove from my cherry code in the single.php file?
<?php get_header(); ?> <?php cherry_setPostViews(get_the_ID()); ?> <div class="motopress-wrapper content-holder clearfix"> <div class="container"> <div class="row"> <div class="<?php echo cherry_get_layout_class( 'full_width_content' ); ?>" data-motopress-wrapper-file="single.php" data-motopress-wrapper-type="content"> <div class="row"> <div class="<?php echo cherry_get_layout_class( 'full_width_content' ); ?>" data-motopress-type="static" data-motopress-static-file="static/static-title.php"> <?php get_template_part("static/static-title"); ?> </div> </div> <div class="row"> <div class="<?php echo cherry_get_layout_class( 'content' ); ?> <?php echo of_get_option('blog_sidebar_pos'); ?>" id="content" data-motopress-type="loop" data-motopress-loop-file="loop/loop-single.php"> <?php get_template_part("loop/loop-single"); ?> </div> <div class="<?php echo cherry_get_layout_class( 'sidebar' ); ?> sidebar" id="sidebar" data-motopress-type="static-sidebar" data-motopress-sidebar-file="sidebar.php"> <?php get_sidebar(); ?> </div> </div> </div> </div> </div> </div> <?php get_footer(); ?>
Forum: Plugins
In reply to: [The Events Calendar] Message since update – re SlugI am experiencing this as well. Following…
Forum: Plugins
In reply to: [Comment Guestbook] Guestbook page is not showing messagesI am having this same issue. Any information on this would be appreciated…
I received the same notification but High Sensitivity Scanning was not enabled. Should I be concerned?
Same for all of my websites this morning. Wordfence, please advise…
@WF Support, has there been any development on this by chance?
Forum: Plugins
In reply to: [Custom Team Manager] number of columnsOk, thank you so much for your help, I look forward to the update, this is a great plugin – i’ve been searching for one similar to this for quite some time. Great work!
Forum: Plugins
In reply to: [Custom Team Manager] number of columnsThank you, I have located the shortcodes.php file and I am assuming this is the code that needs to be changed, but I am not able to get it to display 5 columns instead of 3.
$query = new WP_Query( $args ); if( $query -> have_posts() ) { $loop = 1; $column = 4; $lastcolumn = 3; while( $query -> have_posts() ) { $query -> the_post(); if($loop%2!=0 && $loop !=1) { $cls=" clearPad"; } else{ $cls=""; } if($loop == $column){ $cls.=" firstCol"; $column=$column + 3; } if($loop == $lastcolumn){ $cls.=" lastCol"; $lastcolumn=$lastcolumn + 3; } $team_members_output .= ' <div class="col-one-fourth'. $cls .'">';
Is there a specific location within this code that I need to change to display 5 columns?
Forum: Plugins
In reply to: [Custom Team Manager] number of columnsGreat plugin, has there been any development on changing the number of columns? If not, specifically where is it located in the code to change it?