Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'child theme'

Home / Forums / Search / Search Results for 'child theme'

Viewing 20 results - 6,021 through 6,040 (of 6,404 total)
  • Author
    Search Results
  • #14575

    Hi,

    I created a website on my localhost and uploaded the all the files (themes included) on to my server and created a database (which is working).

    The styling I created for the website is not showing. I don’t have a blog page, just 2 static pages, the homepage has a Kadence slideshow.

    I am using a child theme of Virtue and it is the active theme.

    This is the address: http://www.zimkids.ca

    An help would be much appreciated.

    #14549

    Good morning, currently using WordPress 3.9.1 and Virtue Theme Premium 2.5.3 w/ Child Theme. Currently the Menu Icons now show up to the left of the menu title, what would be the best manner in which to have the icons display ABOVE the menu item as was the case with Virtue Free?

    In forum: Virtue Theme
    #14532

    Yea so you can change the text using a customizer plugin like this: https://wordpress.org/plugins/woocommerce-customizer/

    But the action behind it the “add to cart” can’t be changed without doing some editing in the woocommerce template files in the theme. If you know code and feel comfortable working in a child theme you would need to edit the loop in the file: woocommerce/loop/add-to-cart.php or creating a custom filter function for the woocommerce_loop_add_to_cart_link function.

    Ben

    In forum: Virtue Theme
    #14514

    Ben,
    I added your code to my previously empty functions.php file in my virtue-child theme and it seems to break the site. Pages appear to load but also appear completely blank.

    Here was the content of my functions.php file which I had to remove to allow continued editing of the site ….

    <?php 
    //Add your custom functions here.
    
    <?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page');
    function kad_custom_fullwidth_page($sidebar) {
      if (is_page_template('page-custom-fullwidth.php')) {
        return false;
      }
      return $sidebar;
    } ?>

    thanks
    Mike

    In forum: Virtue Theme
    #14484

    Yea so side is determined by a function because of how the theme wrapper works, So it’s actually the file name that determines that the sidebar shouldn’t show. It’s tricky but genius. Here is the function you can add to your child theme functions file that will all you to create a full width page.

    <?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page');
    function kad_custom_fullwidth_page($sidebar) {
      if (is_page_template('page-custom-fullwidth.php')) {
        return false;
      }
      return $sidebar;
    } ?>

    Ben

    #14483

    I’m not sure what your trying to do? Where did you get this code? If you plan on added functions your should do that in a child theme.

    https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip

    Ben

    #14412

    Ben,
    I am using a child theme and would like to make a custom page template that simply turns off display of the page title. I am having a hard time figuring our which original template to copy and modify. Sorry for the very basic question.
    Mike

    #14382

    I’ve been using the free version for a while and just upgraded to premium. Even though I followed the instructions on importing customizations, because I did not use child themes, I lost a lot of other customization – my own fault, I know. So I’m rebuilding the site options now.

    Problem is, my home page at Pixiespocket.com is set up to show latest posts, but it is not showing the blog posts. When I hover over where the blog post grid should be, there is data there. A Pinterest button shows up where the images should be, and the links are clickable and take me to the posts – it is all there, but invisible.

    I’ve tried going to Theme Options and messing around with what shows. The “Page Content” shows up, the sidebars are there, menu, header….everything but “latest posts”

    Here’s another thing that might be related or might not. I tried to set the Home Page with a “Latest Posts” slider. When I viewed the home page after hitting “save,” the header flashes up for a second and then disappears. I don’t have adblock or anything like that on, either.

    What have I done? 🙂
    Amber

    In forum: Virtue Theme

    In reply to: title above picture

    #14371

    Hey Theo,
    So the theme design is to have the image above. There isn’t any built it option to change that. You can use a child theme and edit the blog loop files to change the way post excerpts are handled.

    The file you would want to edit is templates/content.php

    Ben

    #14222

    No it’s not possible. And your not going to find a widget that does what the post grid does for a custom post type. Your best option is to copy the post grid and make your own widget in a child theme.

    Ben

    #14181

    So that plugin looks like it’s using it’s own custom post type. And the problem is the template for it is not compatible with virtue. it’s calling the header and footer in twice on the page. To make this compatible you would have to create a child theme then override some of the plugin templates so it didn’t call the get header get footer functions. I don’t know the plugin or how it’s coded so you would need to talk with the developers about what templates they are using that are calling header and footer.

    Ben

    #14141

    I am using a child theme and have added some css to remove my footer from devices below 780 px width.

    The display of my home page

    temp.avmi.net

    looks good on an iPhone in portrait mode but in landscape mode, the second row of images (configured using the page builder plugin) align to the left and do not fill the screen.

    Can you suggest some css to enlarge the second row of images to fill, or at least align center on the screen, in displays less than the iPad landscape and greater than the iPhone portrait?

    Thanks
    Mike

    In forum: Virtue Theme

    In reply to: Content in Category

    #14125

    Hey Francisco,
    This is possible but it would require editing the code. You would need to use a child theme: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip

    And copy the virtue_premium/woocommerce/archive-product.php

    you would move lines 55-58 down to the line just above the closing div on the last line.

    Ben

    In forum: Virtue Theme

    In reply to: "Staff"

    #14123

    No, it’s part of the theme. I supposed with a child theme you could run a remove function:

    remove_action( 'init', 'staff_post_init' );

    Ben

    #14089

    Yes and in there perspective folders so you need a woocommerce folder in your child theme and a loop and single-product folder inside that.
    Ben

    #14088

    Thanks for the quick reply. Am I correct that the two php files referenced should be copied to my child theme folder?

    #14067

    No, I’m guessing you are wanting to use the widget? It’s a function in the widget save process so there isn’t a place to change it though a child theme. Your best option is to use the shortcode. Or if you are working on the home page use the theme options.

    Ben

    #14064

    Looks like you are using a child theme, in the footer you’ve changed some stuff or added some stuff but either way the action to get all the javascript files is missing? Can you check and make sure you didn’t remove the wp_footer() call?

    Ben

    In forum: Virtue Theme

    In reply to: google webmaster tools

    #14045

    you should only copy “template” files to the child theme that you want to edit. So no function files. And for styles you override any that you want to change in your child theme css.

    Ben

    In forum: Virtue Theme

    In reply to: google webmaster tools

    #14044

    But please tell me just one more thing, should I also copy all other files to my child theme or just style.css ?

Viewing 20 results - 6,021 through 6,040 (of 6,404 total)