• When using this plugin and the Quality theme with a custom child theme ‘Service settings’, and ‘Project settings’ don’t appear in customizer.

    I have disabled all other plugins. I have stripped the custom child theme of all functions customization and it is essentially a child theme placeholder. The options are available when I switch to the base Quality theme but not when switching to my custom child theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter softext

    (@softext)

    On lines 16 and 30 of the plugins webriti-companion.php file the plugin checks to see if its name matches Quality, Quality blue, Quality orange, Quality green, or Mazino.

    This can be updated to simply check if the theme is Quality or Mazino or if its a child of one of them.

    Sample code below:

    $parent_theme = wp_get_theme(get_template()); // gets the current theme parrent
    if ( 'Quality' == $theme->name || 'Quality' == $parent_theme->name || 'Mazino' == $theme->name || 'Mazino' == $parent_theme->name){

    Please implement this into your next update.

    • This reply was modified 6 years, 6 months ago by softext.
    • This reply was modified 6 years, 6 months ago by softext.
    Plugin Author webriti

    (@priyanshumittal)

    Hi

    Exactly, right now it will not work.

    But we can handle this situation by giving you a child theme from our side and add the support of this child theme in the plugin.

    Will release the update shortly.

    Regards
    Priyanshu

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘‘Service settings’, and ‘Project settings’ don’t appear in customizer’ is closed to new replies.