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 'site'
-
AuthorSearch Results
-
In forum: Ascend Theme
In reply to: Transparent topbar
In forum: Ascend ThemeIn reply to: Content cuts off
In forum: Virtue ThemeIn forum: Reply To:That seems to have solved the problem.
The first one, ‘Example 1’, has not changed but its not from the eviivo plugin – its pasted-in code used on html sites, although it does work on other WordPress sites, but I don’t think I’ll be using it here.
Thanks for the css info – will use elsewhere. Cheers, Neil.In forum: Virtue ThemeIn 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,
Thanks so much for coming back so quickly.
We are using it on this site where we are using the woo-checkout https://mmafightstore.com.au/shop/gift-card/
but want to use it here https://houseofgolf.com.au/shop/e-gift-card/ where we are using your checkout-template.
Thanks
DanielleIn 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: Virtue ThemeAugust 7, 2018 at 3:53 pm #198176Not sure if you talking about the meta gallery or a gallery shortcode either way it’s not going to work if you are importing into a site with content.
Galleries are saved by the ID of the photo. When you import the posts the meta data is there or the shortcode but they are based on numbers that match the photo id. When you import photos they are not imported with the same ID (because that ID may be taken or out of order or whatever) If you import into an empty site then you can usually get the IDS to match but importing into a site with content the ID’s won’t match and you will have to set the selected photos.
Does that make sense?
Ben
Hi Ben,
I decided to rebuild my site on subdomains and move everything back to a single domain for ease of handling.
I went for export import thing, and it works for everything except the gallery.
Maybe there is some SQL option to transfer them between wp_2_posts to wp_post?
Are you familiar with that kind of stuff?Thanks!
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 ThemeIn reply to: URGENT help needed to avoid hosting being suspended
August 7, 2018 at 2:08 pm #1981691. Ok, how sold are you on wanting to stay with this hosting provider. This email is ridiculous. What plan are you on? How much are you paying?
2. How much real traffic are you getting per month? Are you using analytics? Do you know?
3. Why were plugins out of date on your site? Was that just a temp thing?
4. Are you the “developer” or has someone else helped you set up this site?
5. Can you get the error log?
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: Virtue ThemeHello,
One quick way to test if the problem is due to your child theme would be to activate Virtue parent, clear your site’s cache, and then test the menu. This would quickly rule out the child theme as the problem if your issue persists.
Let me know if that makes a difference.
-Kevin
In forum: Virtue ThemeIn reply to: URGENT help needed to avoid hosting being suspended
In forum: Virtue ThemeHi Team,
I’ve been using ShiftNav Pro on this Virtue site for some time with no problems.
Recently, users have observed that the menu doesn’t work on smaller screens. The “Hamburger” icon is visible but it doesn’t do anything.I wrote the plugin author and Chris replied:
Really weird issue, and it took a while to track down, but the problem is that you have two copies of your footer code on your site – that includes ShiftNav, your Instagram and Facebook javascript, etc.
Therefore you have two toggle buttons with two events attached, and clicking does a simultaneous open/close of the menu.
So it sounds like the issue is that your theme is calling wp_footer() twice. This should be in the footer.php file, and it should be called exactly once.
I do have a child theme with a slightly modified version of footer.php but it doesn’t play with wp_footer, just sets the footercredits. And it has worked for a long time – and it’s fine on all other sites. So it still feels like a ShiftNav problem.
Can you shed any light?
Thanks,
Phil.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: Virtue ThemeTopic: Website Speed
In forum: Ascend ThemeI’m using the Virtue theme.
Could you give me some pointers to speed up my website?
Url: *Login to see linkIn forum: Virtue ThemeIn reply to: Centering and Enlarging Virtue Social Media Icons
Hello,
Can you please post a link? I don’t see this in your footer on this site:
http://neatnetwork.co.zaThanks,
Kevin -
AuthorSearch Results


