Category : WordPress

You’ll have to have ftp access or cPanel file manager access to do. Find the path of the redux/inc/class.redux_filesystem.php Edit it. Insert a New Line before 29 and save. Line 28 public function __construct() { New Line $this->parent = (object)array(); Line 29 $this->parent->admin_notices[] = array( Referenced: https://www.wordpresshosting.solutions/index.php/how-to-fix-redux-core-inc-class-redux_filesystem-php-on-line-..

Read more

Make a copy of your index.php file Rename file to category.php Copy category.php to your child theme Edit category.php in your child them and add the following code right after the tag: <div id=”left-area”> <!– add page title code start here –> <?php if ( have_posts() ) : ?> <header class=”blog-title”> <h1><?php printf( __( ‘%s’, ..

Read more

In this example I wanted to show a hyper link on homepage, but all other pages I wanted to show just the text. So I created the following. For simplicity I used SPAN, but if you use a website builder, you can put class in any type module: <span class=”home-page”><a href=”https://iLocalEverywhere.com” target=”_blank” rel=”nofollow”>iLocalEverywhere</a></span> <span class=”other-pages”>iLocalEverywhere</span> ..

Read more

I’ve looked everywhere to find out what the url is for the PayPal IPN. I’ve only found instructions on how to set it up via PayPal and vague instructions on the notification url is.   I did this on a WordPress website. Basically I created a blank page called IPN and set the notification url ..

Read more

Here’s a function I found where it creates a shortcode where you can place anywhere on your website through the editor, widgets, etc. I use DIVI, so it works with it also. The shortcode after you put function in your themes functions.php is [show_loggedin_as] Put the following in your child themes functions.php function show_loggedin_function( $atts ..

Read more

Add the following code to your child themes functions.php file: // DISABLE WOOCOMMERCE LIGHTBOX function remove_image_zoom_support() { remove_theme_support( ‘wc-product-gallery-zoom’ ); remove_theme_support( ‘wc-product-gallery-lightbox’ ); } add_action( ‘wp’, ‘remove_image_zoom_support’, 100 ); reference: https://generatepress.com/forums/topic/disable-lightbox-image-zoom-wo..

Read more

If you have post tags and you want to use them for your WooCommerce products also, the following will definitely help you out.  It works great, but the only caveat is when you click on the tag itself, it will only show posts related to the tag. If you know how to show both post ..

Read more