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 'page '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 16,141 through 16,160 (of 53,646 total)
  • Author
    Search Results
  • In forum: Ascend Theme

    In reply to: Divi Builder

    #198199
    This reply has been marked as private.
    #198198

    Could you tell me how I can change the font colour of all the page titles and also of the title above the vertical side menu (Ascend Premium). I presume I need some code. The colour I am looking for is dd1313.
    Many thanks,
    Paul

    #198189

    Thanks Guys! I change the image size and that worked although I would ideally like the text to the left of the staff or feature image not below. I guess I could always turn off the feature image and imbed the image as apart of the text is there is no way to change the page format.

    #198185

    I can’t get your house of golf site to load.

    But I think now I understand. similar fix through. Create a widget or shortcode that can output the code they are hooking into the page.

    #198182

    Hi Ben,

    Sorry, I nearly wrote ‘you need to put the egift card into checkout to see it’ but thought that was too obvious 🙂

    You need to enter an amount and go through to the checkout page to see get the ‘receiver details’ option.

    It’s actually a silly process that I pointed out to the Smart Coupon guys because we have so many customers that miss it 🙂

    Thanks
    Danielle

    #198181

    ok, you threw me off by saying:

    We are using the Template Builder to make a custom checkout page

    You don’t seem to be talking about the checkout page but actually the product page. You would likely need to create a shortcode or even a widget that would output there code. They likely hooked the main hook which pulls in all the content. In the builder that hook isn’t used so you can manually pul in the content you want in the order you want it in.

    If your interested in coding this I can point you in the right direction if you send me a copy of the plugin so I can see it’s code.

    [email protected]

    Ben

    #198178

    Hey,
    I’m not very familiar with that plugin, didn’t realize it adds anything to the checkout page. Can you post a link to your site so I can see what it’s supposed to be doing for you?

    Ben

    #198177

    Hi guys,

    We are using the Template Builder to make a custom checkout page, however we have lost the ability to enter a recipient’s details when using Smart Coupons. We have sent an email to Woocommerce but didn’t get anything helpful. Do you know of any ability to hook it back in?

    Understand if this is out of your support scope.

    Appreciate any help

    Thanks
    Danielle

    In forum: Reply To:

    In reply to:

    #198172

    Hey,
    Add this css:

    .eviivo-booking-form select{
    width: auto;
    }

    Also, if you look at the simple Enquiry form lower down the page, the drop-down for no.s 1 to 12 is way too wide for just a couple of digits, so it looks like some of the theme style settings aren’t helping with this either.

    Thats built with wp-forms and the styling and size of that select box is set by wp-forms css not the theme. To override you can use this css:

    div.wpforms-container-full .wpforms-form select {
        width: auto;
    }

    Hope that helps,

    Ben

    #198170

    Is there a need for me to modify each of them?

    Yes, You shouldn’t call wp_footer twice.

    Is it simply a matter of moving the footer.php file from templates/ to the parent folder?

    No. If you must just update your templates/footer.php with the current themes template/footer.php So go into the current theme and match your file up with it, minus what you are editing.

    I would suggest not overiding template files.

    So instead create a shortcode for your modified date function in your child theme functions.php file.

    /**
     * Shortcode for updated
     */
    function custom_updated_shortcode_function() {
    	$updated_date = get_the_modified_time('d M y');
    	return updated_date;
    }
    /**
     * Add shortcodes
     */
    function custom_footer_register_shortcodes() {
    	add_shortcode( 'updated-date', 'custom_updated_shortcode_function' );
    }
    add_action( 'init', 'custom_footer_register_shortcodes' );

    Then add all your stuff into the footer credits box in your theme options:

     <div class="row" style="text-align:center">
    	<div class="col-md-4">
    		[copyright] [the-year] and Design: Potatoes New Zealand.  All rights reserved.
    	</div>
    	<div class="col-md-4">
    		This page last updated on [updated-date]
    	</div>
    	<div class="col-md-4">   
    		Built by <a href="https://www.avalonmarketing.co.nz/" target="_blank">Avalon Marketing & Website Design Ltd</a>; hosted by <a href="https://www.rosetta.group/" target="_blank"> Rosetta Group</a>
    	</div>
    </div><!-- row -->

    Ben

    #198163

    Thanks Kevin and Ben.
    Sorry I missed the move from templates/footer.php to footer.php. Each of other sites uses Virtue with a child theme and a modified templates/footer.php. I haven’t modified any of our sites and the other sites are all working fine. Is there a need for me to modify each of them?

    The immediate priority is to fix the ShiftNav issue. Is it simply a matter of moving the footer.php file from templates/ to the parent folder?

    The aim of the modified footer.php file is to change the footer credits. I didn’t know how to achieve the change within theme options > misc settings so I went for the template file instead. My modified lines 113 onwards look like this:

    <!--<p><?php //$footertext = $virtue_premium['footer_text']; echo do_shortcode($footertext); ?></p> -->
                        
                        <!-- Insert for footer credits -->
                        <div class="row" style="text-align:center">
                            <div class="col-md-4">
                            <?php 
                            $footertext = '[copyright] [the-year] [rights]';
                            $footertext = str_replace('[copyright]','Copyright &copy;',$footertext);
                            $footertext = str_replace('[the-year]',date('Y'),$footertext);
                        // Organisation name in here
                            $footertext = str_replace('[rights]',' and Design: Potatoes New Zealand.  All rights reserved.',$footertext);
                            echo do_shortcode($footertext); ?>
                        </div>
                        <div class="col-md-4">   
                            <?php
                            $footertext = '[updated-text] [updated-date]';
                            $footertext = str_replace('[updated-text]','This page last updated on',$footertext);
                            $updated_date = get_the_modified_time('d M y');
                            $footertext = str_replace('[updated-date]',$updated_date,$footertext); 
                            echo do_shortcode($footertext); ?>
                        </div>
                        <div class="col-md-4">   
                            <?php
                            $footertext = '[theme-credit]';
                            $footertext = str_replace('[theme-credit]','Built by <a href="https://www.avalonmarketing.co.nz/" target="_blank">Avalon Marketing & Website Design Ltd</a>; hosted by <a href="https://www.rosetta.group/" target="_blank"> Rosetta Group</a>',$footertext);
                            echo do_shortcode($footertext); ?>
                        </div>
                        </div><!-- row -->
                        <!-- End of Footer credits insert -->

    You can see the result on the site I referred to above.
    Very many thanks,
    Phil.

    In forum: Reply To:

    In reply to:

    #198162

    No change.
    Also, if you look at the simple Enquiry form lower down the page, the drop-down for no.s 1 to 12 is way too wide for just a couple of digits, so it looks like some of the theme style settings aren’t helping with this either.

    #198159

    Hi Ben
    I’ve done just that. I was just concerned that each page would have the same content in the page builder sidebar, effectively having duplicate content on each page. It’s not an issue though. All good.
    Thanks
    Costa

    #198157

    You can modify the shortcode to get the styling however you like. Take a look at this page and you should be able to add whatever you need to the shortcode:
    http://docs.kadencethemes.com/pinnacle-premium/shortcodes/

    -Kevin

    #198152
    This reply has been marked as private.
    #198148

    Would this not cause issues with SEO and duplicate content?

    What do you mean? Duplicate in reference to what?

    In site origin page builder you can order the collapse to be left to right instead of right to left. Or you can use the one sidebar from the theme as your left sidebar and add a right one with pagebuilder.

    In forum: Ascend Theme

    In reply to: Divi Builder

    #198143

    Elementor adds spacing at the top only while you are editing so that it’s tools that appear on the top of a row are visible. Had you tried to save the page and look at it on the front end?

    #198133

    Just looked at the image menu, that full width is what i am after.

    How do I make it a full width row? I am on the page builder on Home Layout.

    Thanks

    #198125

    Hey,
    The link didn’t seem to take me to an image. So I don’t know what you mean by “any logout button” the one main login link is on the account page. That is what I tried with your settings enabled and it worked fine.

    #198113

    Hi Kevin,

    Nope it doesn’t work with either Visual Editor or the Site Origin editor. I’ve just updated the Site Origin page builder plugin but it still doesn’t work.

    Thanks,
    Matt

Viewing 20 results - 16,141 through 16,160 (of 53,646 total)