barrywww
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Activity Log] Changed ValueHello Robert,
Thanks for getting back to me, yes I do use Site Kite and will investigate that further.
Great fast response thank you.
Best wishes,
BarryForum: Plugins
In reply to: [Ultimate Posts Widget] Warning MessageHi,
That’s great all sorted now.
Thank you.
Forum: Plugins
In reply to: [WP STAGING WordPress Backup Plugin - Migration Backup Restore] Update 2.9.18Great, Thank you René for the clarification.
Forum: Plugins
In reply to: [Modern Events Calendar Lite] List View not showing all itemsHello,
The website URL is thomaspoolelibrary.org.uk/whats-on/ Which has two shortcodes on it, on the left is a ListView and in the middle a CalendarView both with separate shortcodes.
The CalendarView shows items on a specific day but I have the ListView set to show upcoming events.
But on the left in the list view, I do not see all of the events. Whereas in the calendar view they all show up.
This week until the 5th of Sep, there is an item each day Called the Summer Reading Challenge With two categories, that is not showing in the list view not even when I select the category.
I hope that is enough information for you.
Regards Barry
Forum: Plugins
In reply to: [Mailchimp for WooCommerce] Woocommerce UpdateThis is why I always insist on a maintenance package with the sites I develop.
Nice site by the way.
Barry
Hi, Thanks for getting back to me I will now start to look elsewhere.
Barry
Hi Peter,
Thanks for getting back to me, yes Wordfence is doing a great job, I will probably move to the higher severity notifications.
Barry
Forum: Everything else WordPress
In reply to: Admin or LoginThanks, Vlad, It is strange, I also thought it could be a security plugin but all my sites use WordFence but this is the only one with this issue.
I have disabled all the plugins and it does the same thing.
Barry
Forum: Plugins
In reply to: [Easy Updates Manager] WP_AUTO_UPDATE_CORE keeps coming backHi, Thanks for getting back to me.
I am on a VPS server which I manage.
I have tried commenting out and actually removing that line in the config.php file as suggested in the warning message that is shown. However, it soon reappears.
I have lots of sites that I manage and this problem exists on all of them.
Barry
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] plugin conflictHi, I wonder if you know of a solution to this issue, please.
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] plugin conflictHi, Thanks for getting back to me.
The issue is that it stops the plugin “Server IP & Memory Usage Display” from working.
It is an admin plugin that shows details of IP, PHP version, memory etc in a message at the bottom of the admin section. With Cookie notices latest update this info is no longer visible.
Both are live on my site I just can’t see the results in the admin section of the mentioned plugin.
I install both “Cookie Notice” plugin and the “Server IP & Memory Usage Display” plugin on all my sites, it has affected all sites.
On this site, I am using PHP 7.3.26 WordPress 5.5.3 Whereas other of my sites are on PHP 7.4.14 and WordPress 5.6.1 and still have the issue.
Forum: Plugins
In reply to: [WooCommerce] Shipping location is reducing priceThanks for the reply, I am new to Woocommerce so guess I will have to look deeper into how the tax settings work.
Forum: Fixing WordPress
In reply to: Plugin where usedThanks that helped, it just means inspecting a lot of pages, I was hoping for a way of searching the entire site to find where different plugins were actually being used.
Forum: Plugins
In reply to: [Adminimize] Remove from Plugins listHi Frank
Thanks for your reply.
I look forward to your plugin being able to do that, as it would then really do everthing.
Regards Barry
Forum: Themes and Templates
In reply to: [Customizr] Remove Menu – Landing PageHi Menaka
I appreciate your help.
I changed the TC-header_main to CZR_header_main in my child functions.php but still all I get when I load the page is a blank page.
I have created a page called nomenu-page.php. from the Custom-page template.
Coded as foillows:
<?php /* Template Name: LandingPage */ if ( apply_filters( 'czr_four_do', false ) ) { do_action( 'czr_four_template' ); return; } ?> <?php do_action( '__before_main_wrapper' ); ##hook of the header with get_header ?> <div id="main-wrapper" class="<?php echo implode(' ', apply_filters( 'tc_main_wrapper_classes' , array('container') ) ) ?>"> <?php do_action( '__before_main_container' ); ##hook of the featured page (priority 10) and breadcrumb (priority 20)...and whatever you need! ?> <div class="container" role="main"> <div class="<?php echo implode(' ', apply_filters( 'tc_column_content_wrapper_classes' , array('row' ,'column-content-wrapper') ) ) ?>"> <?php do_action( '__before_article_container' ); ##hook of left sidebar?> <div id="content" class="<?php echo implode(' ', apply_filters( 'tc_article_container_class' , array( CZR_utils::czr_fn_get_layout( CZR_utils::czr_fn_id() , 'class' ) , 'article-container' ) ) ) ?>"> <?php do_action( '__before_loop' );##hooks the header of the list of post : archive, search... ?> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : ##all other cases for single and lists: post, custom post type, page, archives, search, 404 ?> <?php the_post(); ?> <?php do_action( '__before_article' ) ?> <article <?php czr_fn__f( '__article_selectors' ) ?>> <?php do_action( '__loop' ); ?> </article> <?php do_action( '__after_article' ) ?> <?php endwhile; ?> <?php endif; ##end if have posts ?> <?php do_action( '__after_loop' );##hook of the comments and the posts navigation with priorities 10 and 20 ?> </div><!--.article-container --> <?php do_action( '__after_article_container' ); ##hook of left sidebar ?> </div><!--.row --> </div><!-- .container role: main --> <?php do_action( '__after_main_container' ); ?> </div><!-- //#main-wrapper --> <?php do_action( '__after_main_wrapper' );##hook of the footer with get_get_footer ?>
In my fuctions.php file I have the following.
add_filter('__before_body','remove_header'); function remove_header($content){ if (strcmp(basename(get_page_template()),'nomenu-page.php') === 0) { // Choose one or more of the following FOUR lines based on need // remove_action ( '__header', array( CZR_header_main::$instance , 'tc_prepare_logo_title_display' ) , 10 ); // REMOVE TITLE AND LOGO //remove_action ( '__header', array( CZR_header_main::$instance , 'tc_tagline_display' ) , 20, 1 );// REMOVE TAGLINE remove_action ( '__header', array( TC_header::$instance , 'tc_navbar_display' ) , 30 ); //REMOVE NAVBAR/MENU //add_filter('tc_header_classes','__return_empty_array'); } }
What I want to do is remove the Menu so that create a standalone Landing Page.
Regards Barry
- This reply was modified 7 years, 11 months ago by barrywww.