Viewing 6 replies - 1 through 6 (of 6 total)
  • Ha, I told you how to fix it… Just have to define your WP_CONTENT_DIR and WP_CONTENT_URL correctly.

    Very easy to do in your wp-config file like I pointed out in the link:

    https://codex.www.ads-software.com/Editing_wp-config.php

    Kadence Themes

    I use Virtue for one of my sites. What exactly does this mean?

    Hey @jriddles,
    This most likely means nothing to you, if your theme options are working then you don’t have to even read on.

    But you can see what @faiello is referring to here: https://www.ads-software.com/support/topic/theme-options-are-blankmissing?

    The virtue theme options panel is built using the redux options framework. The developers of redux use WP_CONTENT_DIR and WP_CONTENT_URL two core constants defined by WordPress. If they are not correctly defined then the theme options don’t load correctly. For 99 percent of people this is done automatically and you don’t need to do anything. But for some they need to correctly define the path in their wordpress config file for the theme options to work. Apparently if you are running WordPress on openshift platform it means you need to define the paths. You can read more about do that here:

    https://codex.www.ads-software.com/Editing_wp-config.php

    From the comment by @faiello above it seems I was not able to correctly explain the fix in a timeframe to their liking? I don’t know…

    Ben Ritner
    Kadence Themes

    I still cannot get this working… I continue to get failed resource 404 errors, regardless of whether I use the Redux-Framework WP Plugin OR use existing redux framework integrated in the theme or try and update it to the latest version available

    Also, tried to define the WP CONSTANT on openshift, without a trailing slash…
    @faiello, could you please share what changes helped you fix the problem in a little more details?

    Many thanks and best regards,

    Images
    [url=https://postimg.org/image/6qud1w4oz/][img]https://s29.postimg.org/6qud1w4oz/Dev_Trace_Chrome.png[/img][/url]

    [url=https://postimg.org/image/gy8b0k1j7/][img]https://s29.postimg.org/gy8b0k1j7/Theme_options_weird.png[/img][/url]

    Thread Starter faiello

    (@faiello)

    hi

    I made changes as follows on file virtue/themeoptions/framework.php”:

    old:

    // Windows-proof constants: replace backward by forward slashes. Thanks to: @peterbouwmeester
    self::$_url     = trailingslashit( $wp_content_url ) . $relative_url;

    new:

    self::$_url     = trailingslashit(get_template_directory_uri()) . trailingslashit(basename(__DIR__));

    Hey purnam.dhyan

    I have tested this version on openshift:

    https://www.ads-software.com/themes/download/virtue.2.1.9.zip

    It’s not even live yet but I know that it works with openshift, so you can download and use.

    Kadence Themes

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Works also on PaaS’ is closed to new replies.