Forum replies created

    Terry Mason
    Spectator
    Posts: 17
    December 12, 2020 at 10:22 pm #45608

    You’re right – that fixed it. I tried another browser first, and it worked great, so I CTRL F5 three times and I’m back to good.

    Thank you.

    Terry Mason
    Spectator
    Posts: 17
    December 12, 2020 at 2:04 am #45606

    Not to pile on, but I’m seeing similar problems. When I click on “appearance -> customize”, the only option (thing) on the screen that loads is “widgets”.

    Terry Mason
    Spectator
    Posts: 17
    October 24, 2020 at 10:50 pm #45437

    For those that come after me:

    disabling the “component shortcodes” plugin fixes this problem, however I wanted to keep running that plugin. The answer was to manually comment out that code in each of the three files.

    Terry Mason
    Spectator
    Posts: 17
    September 3, 2020 at 10:07 pm #45293

    OK, I think I may have fixed things. Here’s what I did to continue using my old child theme (developed for 2.9.7) after upgrading to 2.9.9.8

    Inside of my child theme’s functions.php replace this:

    // Exit if accessed directly
    if ( ! defined( 'ABSPATH' ) ) {
    	exit;
    }
    
    // Enqueue parent action
    
    if ( ! function_exists( 'evolve_parent_css' ) ) {
    	function evolve_parent_css() {
    		wp_enqueue_style( 'evolve-parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'evolve-bootstrap' ) );
    	}
    }
    add_action( 'wp_enqueue_scripts', 'evolve_parent_css', 10 );
    

    with this

    if ( ! function_exists( 'suffice_child_enqueue_child_styles' ) ) {
    	function evolvePlusChild_enqueue_child_styles() {
    	    // loading parent style
    	    wp_register_style(
    	      'parente2-style',
    	      get_template_directory_uri() . '/style.css'
    	    );
    
    	    wp_enqueue_style( 'parente2-style' );
    	    // loading child style
    	    wp_register_style(
    	      'childe2-style',
    	      get_stylesheet_directory_uri() . '/style.css'
    	    );
    	    wp_enqueue_style( 'childe2-style');
    	 }
    }
    add_action( 'wp_enqueue_scripts', 'evolvePlusChild_enqueue_child_styles' );
    
    /*Write here your own functions */

    after doing that, things appear to be normal again. I would note that my child theme is called evolvePlusChild, I’m thinking you may have to tweak that for your install.

    Terry Mason
    Spectator
    Posts: 17
    September 3, 2020 at 9:50 pm #45292

    I tried the evolve plus theme in the Theme4Press downloads, and it does not appear to be compatible with either 2.9.9.8 or WordPress 5.5.

    So, then I tried the plugin you mentioned, and while it worked, it removed all of my customization. Is there a way that I can keep my background and link colors, footer messages, etc?

    Thanks

    Terry Mason
    Spectator
    Posts: 17
    September 3, 2020 at 6:34 pm #45291

    Thanks for the response!
    Is the evolve child theme available in my Theme4Press download section compatible with 5.5? There are a few personal add-ins that I’ve coded, so I’d like to stick with a child theme if possible

    Terry Mason
    Spectator
    Posts: 17
    September 3, 2020 at 5:09 pm #45289
    This reply has been marked as private.
    In reply to Disable Lightbox
    Terry Mason
    Spectator
    Posts: 17
    November 7, 2016 at 12:46 am #31054

    Sorry to bump an old thread, but I was wondering if this has been fixed yet. I’m running evolve plus 2.6.8 and I couldn’t disable the lightbox until I edited the functions file.

    Terry Mason
    Spectator
    Posts: 17
    October 17, 2016 at 9:47 pm #30729

    Any chance a developer could help out and tell me if either of these plugs are an actual requirement of the theme?

    Terry Mason
    Spectator
    Posts: 17
    October 13, 2016 at 6:03 pm #30692

    I disabled both the redux framework and the theme4press core, and couldn’t see any problems. I don’t use any sliders, and haven’t manually input any shortcodes, so I think I’m in the clear.

    If any developer is able to chime in that would be great.