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 '
-
AuthorSearch Results
-
In forum: Ascend Theme
In reply to: Divi Builder
August 8, 2018 at 1:56 am #198198Could 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,
PaulIn forum: Virtue ThemeIn reply to: Text Not Wrapping Around Feature Images
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.
In forum: Membership ForumsIn reply to: Template Builder and Smart Coupons
August 7, 2018 at 5:34 pm #198185I 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.
In forum: Membership ForumsIn reply to: Template Builder and Smart Coupons
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
DanielleIn forum: Membership ForumsIn reply to: Template Builder and Smart Coupons
August 7, 2018 at 5:00 pm #198181ok, 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.
Ben
In forum: Membership ForumsIn reply to: Template Builder and Smart Coupons
August 7, 2018 at 4:50 pm #198178Hey,
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
In forum: Membership ForumsHi 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
DanielleIn forum: Reply To:August 7, 2018 at 2:28 pm #198172Hey,
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
In forum: Virtue ThemeAugust 7, 2018 at 2:21 pm #198170Is 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
In forum: Virtue ThemeThanks 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 ©',$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 forum: Virtue ThemeIn reply to: Possibilities for blog site with Virtue Premium
In forum: Pinnacle ThemeIn reply to: Call to action, hover and click instead of button
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
In forum: Virtue ThemeIn reply to: URGENT help needed to avoid hosting being suspended
In forum: Virtue ThemeIn reply to: Possibilities for blog site with Virtue Premium
August 7, 2018 at 1:10 pm #198148Would 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 ThemeIn reply to: Divi Builder
August 7, 2018 at 12:54 pm #198143Elementor 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?
In forum: Pinnacle ThemeIn reply to: Call to action, hover and click instead of button
In forum: Virtue ThemeIn reply to: Conflict with All In One WP Security Plugin
August 7, 2018 at 11:53 am #198125Hey,
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.In forum: Ascend ThemeIn reply to: Extra Shortcodes have disappeared
August 7, 2018 at 10:46 am #198113Hi 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 -
AuthorSearch Results


