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 - 681 through 700 (of 6,404 total)
  • Author
    Search Results
  • In forum: Ascend Theme
    #250644

    I can’t seem to access your staging, getting this error:
    “The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.”

    Yes I’m using a child theme here, and specific theme options if you can make your link public I would be happy to help,

    Ben

    In forum: Ascend Theme

    In reply to: Category

    #250618

    Hi Hannah

    No I have no child theme.

    Regards
    Anders

    #250603

    Hmm, I’m not sure of a way to create something like that without adding a custom function to a child theme. There may be a plugin that has the ability to create that, but I don’t know of one. Sorry!

    Hannah

    In forum: Virtue Theme
    #250569

    Necesito modificar el titulo de mi entrada para personalizarlo. La pregunta es hay forma de agregarlo al theme child o modificarlo de tal forma que al actualizar el tema no se pierda dicha modificación.

    In forum: Ascend Theme

    In reply to: Category

    #250544

    Hey Anders,
    I don’t believe you can change the order of product categories within the product categories widget without adding a custom function into a child theme. Are you currently using a child theme?

    Hannah

    #250543

    To create that you would need to use a child theme. Or you could remove the Add to Cart button altogether so people are forced to click the image. There may be a plugin that would do what you’re after, but I don’t know of any free ones.

    Hannah

    #250528

    Hi Elaine,
    There isn’t a default function to change this, you would need to add a custom function into a child theme. Are you currently using a child theme? This should work for you:

    add_filter( 'woocommerce_loop_add_to_cart_link', 'replacing_add_to_cart_button', 10, 2 );
    function replacing_add_to_cart_button( $button, $product  ) {
        $button_text = __("View product", "woocommerce");
        $button = '<a class="button" href="' . $product->get_permalink() . '">' . $button_text . '</a>';
    
        return $button;
    }

    Hope that’s helpful!

    Hannah

    #250255

    One other piece of information. I have a sandbox site that I do new development and testing in. On that site I activated the Twenty Twenty theme and I get the same behavior with the Advanced Heading block and hyperlinks. So it’s not the Genesis Framework or my Genesis child theme.

    #249921

    I would like to make it clear again that this is not a theme issue, your plugin is most certainly the issue, I deactivated all of the javascript to test, your plugin breaks when a carousel loads on the page. It doesn’t have to be a theme carousel for it to break things. I suggest you find a better plugin.

    However, I’ve added a child theme with a function to remove the related products carousel and turn it into a grid so that your plugin will function.

    Ben

    #249870

    We are in the process of switching to for a better product search and navigation. I noticed that custom product tabs (The Virtue theme allows to add 1-3 additional product tabs) are not indexed. Reading the documentation of it seems that these tabs would need to be added to the search indexer using a filter following the steps as outlined at

    I am not sure if adding this would be in the scope of the Virtue Theme. If not, I could also add it to our child theme – though, I’d be thankful if you could send me a small snippet that would work for virtue product tabs since I do not know it’s internal meta data names etc. In the linked example code at for instance it is ‘test_meta’ and I would not know the name for the custom tabs.

    #249857

    As far as I can see I don’t believe this is an issue with the javascript on our end, however, I’m happy to add a workaround for your site through a child theme. Can you send me ftp access and I can set that up for you.

    Out of curiosity what are you using the wfcm plugin for?

    Ben

    In forum: Virtue Theme
    #249618

    Hey,
    If editing the theme files you need to use a child theme. This will allow you to update without having to re-add your changes. You can download a child theme from here: https://www.kadencewp.com/child-themes/
    If you don’t want to use a child theme you can also hide the add to cart with css and that will also allow you to update without re-adding code.

    Hannah

    #249460

    The search bar would be in your topbar. I don’t believe there’s an option to enable clickable search text without adding a custom function into a child theme.

    Hannah

    #249380

    Hi Marion,
    Are you using a child theme? If so, you can add the code Ben provided to your functions.php. You can download a child theme here:
    https://www.kadencewp.com/child-themes/

    Hannah

    #249334

    Hello,
    Thank you for your answer, I understand that it’s finally impossible, even if I use a child theme, isn’t ?

    Thank you, I love virtue even if it’s not possible ! 🙂

    #249206

    To make the paypal button open in a new tab you would need to add a custom function into a child theme. Or you could try reaching out to WooComerce to see if they have a workaround.
    Let me know if there’s anything else I can help you with!

    Hannah

    #249177

    Thank you very much for your answer. I don’t speak very well english, not easy to explain you my request.
    I don’t use any child theme for the moment, but i planned to use one.

    If i can add a custom fonction in functions.php, it is wonderfull ! 🙂 I’m very happy.
    Can you tell me what I ca add ?

    Thanks
    Marion

    #249169

    Sorry for the misunderstanding. The design of that layout is meant to show the date via the calendar icon. If you want to change this for this specific format you would need to add a custom function into a child theme. Are you currently using a child theme?

    Hannah

    #249045

    Hannah,

    After reading about functions files, I understand that I would need to be working with a child theme. I read the article that you sent. This seems to me to be just one added layer of complexity to building my website, one that is already daunting enough. So maybe I’ll just let go the desire for this particular feature, and stick to the basic website without child theme.

    Thank you for helping to clarify this!

    Best,
    John Graham

Viewing 20 results - 681 through 700 (of 6,404 total)