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: Membership ForumsApril 19, 2018 at 10:27 am #187886
Hey,
I just pushed out an update to the slider, it will basically create all kinds of fallbacks if the urls of your images don’t match the site so while I strongly recommend they do match the site especially since ssl will not work if they don’t this at least will make sure the images output something.Ben
In forum: Virtue ThemeApril 19, 2018 at 10:02 am #187882ok, I found the issue, your files were named with
-1200x650which is how wordpress defines images that they’ve cropped. When the slider is gathering information about the image to determine it’s size it works to get the image id and checks the url. It was thinking your images were not the base image so I’ve updated the slider on your site to fix this and you should be set.Ben
In forum: Virtue ThemeIn reply to: HOW TO TAKE OFF “DESCRIPTION” IN PAGE PRODUCT
April 19, 2018 at 9:49 am #187879That leaves this output code on your site
<h2> </h2>Which is not good for SEO, I suggest using this css I posted above over this suggestion by alex.
Here is the css again:
#content div.product .woocommerce-tabs .woocommerce-Tabs-panel--description h2 { display: none; }Ben
In forum: Membership ForumsApril 19, 2018 at 9:45 am #187878Hey,
You can’t use relative links, And it’s not best to because that slider would break on any other page.
When you change site URL say you go from http to https you need to run a string replace through your entire database to make sure all your urls are using https. Every image you add into a page or post on its own won’t change unless you do this.So if you change to https and don’t update those URLs your site will show an error in your https because for every image or script loaded in none https it causes an insecure error to show.
Check out this post: https://www.kadencewp.com/adding-ssl-wordpress/
Ben
In forum: Pinnacle ThemeIn reply to: Error problem
April 19, 2018 at 9:31 am #187876Just to provide some information, The error message doesn’t say what the real issue is thats why we need to follow up. For example in none of the demos or test sites do we have this error so follow up questions and tests will help us track it down.
If you can send a temp login to your site that would also increase the speed at which we can find the issue.
BenIn forum: Ascend ThemeIn reply to: WP side bar items missing
April 19, 2018 at 6:13 am #187850Hi Ben,
I was trying to test the code you provided. But i get a php error on the code it self. See below:
PHP Syntax Check: Parse error: syntax error, unexpected ‘Products…’’ (T_STRING) in your code on line 6
case ‘Search Products…’ :PHP Syntax Check: Errors parsing your code
What could be wrong, I dont want to break my site by placing the code.
Thanks for checking
Rgards
ALexIn forum: Virtue ThemeThanks for the replies,
i just checked the image urls and they are https.
and in the theme options-home slider i have the shortcode option selected.
Any other things i should check?Having looked at the site on desktop and mobile a bit longer the problem is not exactly that they are not showing but that the slider appears and then disappears. in the mobile version you still see the four dots for where the slider should be and then the slider appears and then disappears again. Strange!
In forum: Pinnacle ThemeTopic: Error problem
April 19, 2018 at 3:44 am #187840Hi
Received an error when I was creating a new post.
Can not create a new post
But the site works well.Fatal error: Declaration of CMB2_Type_Textarea_Code::render() must be compatible with CMB2_Type_Textarea::render($args = Array) in /home/bjudinse/sandstens.se/wp-content/themes/pinnacle_premium/lib/classes/cmb/includes/types/CMB2_Type_Textarea_Code.php on line 13
In forum: Virtue ThemeIn reply to: Images not cropping post flexslider
hehe it is now, check the homepage (bottom section): http://landmarkdraft.dreamhosters.com/
understood about the code- I meant slick slider sorry, i get lost sometimes in my own brain building several sites at once will do that to you!
one query, the main site header- its set to be fixed and seems to ‘jump’ a bit on scroll, is there a quick fix for that?
J
In forum: Virtue ThemeApril 18, 2018 at 1:48 pm #187801Hi,
I’m trying to add the Kadence Importer to my website but every time i try to i get the error message ‘The link you followed has expired.
Please try again.’ Does anybody know how i can solve this problem? I’m using Virtue premium theme
Thanks
GrahamIn forum: Virtue ThemeHi Hanna,
The site is on “localhost” …so a link will not work… I will put the site online and let you know when it’s there… also, I want to thank you for your help! …your answers have to others have helped me several times and your response to this issue prompt. Wow! …great support Hanna, I appreciate your knowledge and will post a link when the site is online… thanks again. hw
In forum: Virtue ThemeTopic: Flex slider on mobile
In forum: Virtue ThemeIn reply to: Remove Add to Cart on category page
April 18, 2018 at 12:12 pm #187764Do you want to remove from the single product pages as well making it impossible to purchase on our site so it’s more like a catalog?
Ben
In forum: Ascend ThemeIn reply to: Woocommerce bookings compatibility issue
Hi Ben,
Thank you, yes I can confirm when removing all CSS the calendar works. I’ll look to do that first next time 🙂
I understand what you’re saying with the CSS, just tested on test site and all looks to be working again 😀
Can’t thank you enough, not sure I’d ever have gotten to the bottom of it. Bit strange Woocommerce support didn’t spot this :/
Thanks again Ben, the support for your themes is top notch and would always recommend!
In forum: Ascend ThemeApril 18, 2018 at 11:07 am #187752Hello,
My add to cart icon is also displayed with out of stock products button: add to cart icon + read more.site page with example : *Login to see link line 4
Any idea to solve that ?
Thank you in advance
Arnaud
In forum: Ascend ThemeIn reply to: Woocommerce bookings compatibility issue
April 18, 2018 at 9:38 am #187733Let me give you an example of how your css isn’t working, perhaps this will help. The plugin your using styles “booked” days with this css:
.wc-bookings-date-picker .ui-datepicker td.fully_booked a, .wc-bookings-date-picker .ui-datepicker td.fully_booked span { background-color: #c0392b!important; background-image: none!important; border-color: rgba(0,0,0,.1)!important; color: #fff!important; text-shadow: 0 1px 0 rgba(0,0,0,.1); }Notice they target
td.fully_booked aandtd.fully_booked spanIn your css you are only targeting span
.wc-bookings-date-picker .ui-datepicker td.fully_booked span { background-color: #C8D3E5 !important; color: #000 !important; }Perhaps before an
atag wasn’t used but regardless it is on your site currently and so your css to override the plugin isn’t working because it’s not targeting the same things as the plugin.Does that make sense?
Ben
In forum: Ascend ThemeIn reply to: Woocommerce bookings compatibility issue
April 18, 2018 at 9:32 am #187731Hey,
I just looked at your site and your css is not all commented out in the theme options. Please remove it all and test, just paste it into a text program so you have a copy.I can assure you the theme is not editing the styles of that calendar.
Ben
In forum: Ascend ThemeIn reply to: Change Background Colour of products on Sale
In forum: Ascend ThemeIn reply to: Woocommerce bookings compatibility issue
In forum: Ascend ThemeIn reply to: styling minicart
April 18, 2018 at 9:02 am #187720Hi,
Okay sorry for not being clear. I was talking about the minicart
Like the minicart on this website https://bit.ly/2EYiDg7
-
AuthorSearch Results


