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: Pinnacle Theme
In reply to: a site with pinnacle
Hey,
Looks like that site is using the revolution slider for the homepage header, and the page content is built using page builder by siteorigin. Are you wanting someone to build your website from the ground up? Or are you just wanting a designer to come in and help style your content?Hannah
In forum: Ascend ThemeIn reply to: Drop down menus
January 14, 2020 at 7:35 am #243229Hi Hannah,
Thank you, that’s exactly what I was looking for.
Can I add the same effects to the Panel Color menu and the quantity field in the single products page?
Regards,
Pete
In forum: Ascend ThemeTopic: Problem inside category
January 14, 2020 at 7:29 am #243227Hi,
I have a problem on mobile on category page (it’s not the good size)
Can you help me ?
Thanks
In forum: Virtue ThemeThank you I don’t know how I will do without your professionalism!
I indeed removed the div and the image that had been put in the page, I don’t know why … and after several tests, I tried to delete the cookiebot script and everything worked! the images returned and the form works.
Thank you so much!In forum: Ascend ThemeIn reply to: Staff Grid problems
In forum: Pinnacle ThemeIn reply to: Active Before in Sidebar Menu
1. OK, I’m seeing something different now. Try using this css:
li.menu-member-directory.current-menu-item.current_page_item a:before { color: #006a6e; font-weight: 600; opacity: 1; }2. Not sure why that wasn’t showing before. This css should remove that for you:
.sidebar .widget_nav_menu li a:after { display: none !important; }Let me know how that works for you!
Hannah
In forum: Virtue ThemeIn reply to: Blogs in blog category missing in Safari
In forum: Ascend ThemeJanuary 13, 2020 at 3:46 pm #243207Hey Ben
When I started the Blog I had no products to sell and removed those pages (not realizing they are not removed).
1) I’ve noticed that on the report (see the 2 print screens below). Is there any way I can remove them completely or what do you suggest?
2) Another problem is I had Travel gear products on my site which I removed as I had very little time last year to attend to the site. Amazon canceled my contract so I had to removed the products. But now I’ve noticed on google analytics report that people still search for some of the products (so they must be somewhere)?Can you perhaps direct me what to do?
thanks in advance.
MimmieIn forum: Ascend ThemeIn reply to: duplicate content
January 13, 2020 at 3:08 pm #243203Ok, so the snippets of my blog posts on the home page are not a problem.
Thanks Ben
In forum: Ascend ThemeIn reply to: Site origin parallax not working on Safari
January 13, 2020 at 3:08 pm #243202I can’t recreate so I need more information, like what version of Max OS and what version of Safari.
I’ve attached two screen shots, the first shows who the image looks when you first reach it the second as you’ve scrolled a little further down the page. Notice that the Eye has moved behind the content.
In forum: Ascend ThemeIn reply to: duplicate content
January 13, 2020 at 3:01 pm #243200You would need to ask Adsense that question.
Let me give you an example of “duplicate” content that is on every blog. Let’s say you write a blog post and you add it to two categories, category a and category b, both of those category archive pages will now have the same content, your blog post. Technically that’s duplicate content on two pages on your site. But that isn’t how it works, duplicate content is about making sure you are not copying the same blog posts and posting it 5 times on your site.
Ben
In forum: Ascend ThemeJanuary 13, 2020 at 2:01 pm #243191Hi,
I get this warning on some of my website portfolio pages in which I use a gallery:
Invalid argument supplied for foreach() in /customers/e/a/b/sachajennis.be/httpd.www/wordpress/wp-content/themes/ascend_premium/lib/kad_shortcodes/gallery.php on line 464e.g on these pages:
– *Login to see link
– *Login to see linkAll the images in the gallery have id’s in html, so I am not quite seeing how I can fix this?
In forum: Membership ForumsIn reply to: Kadence Gallery – Lazy Loading
January 13, 2020 at 1:45 pm #243188Hey,
Any lazy load would work, I’ve even tested with a3 Lazy Load plugin and it works just fine, you have something else affecting it.From what I can see your images are not saved with their sizes. Meaning all the block has is a url, no data on the size of the image. This leaves it all up to the browser to load the image and then masonry to recalculate the size and place the images correctly. It’s not ideal and not what you want if you are using a lazy load.
Kadence Galleries is designed to capture the size information when you select the images and set up intrinsic padding so that the size of your image is set before the image is ever loaded. This makes for a really clean, nice load and perfect for lazy load because you don’t have any jumping as the images are loaded
Your gallery in the page you linked to does not contain any size information. This means you either have a plugin that is breaking this save part of the block, or you’ve selected a thumbnail size in the gallery settings that doesn’t exist for your images or that your images are not uploaded with size information so there is nothing for the block to collect.
I suggest you deactivate plugins and try to edit the gallery and reselect a thumbnail size that you know exists.
If you would like you can also send a login, I would be able to pinpoint your issue better from the backend.
Ben
In forum: Membership ForumsIn reply to: Kadence Blocks are not HTML5 Valid
January 13, 2020 at 1:32 pm #243184Hey,
The error “Element style not allowed as child of element div in this context” is not exactly accurate.Here is a summation:
Originally (before HTML5),
<style>was not “valid” outside<head>, but was supported by most or all browsers. “not valid” means that validators would complain about it, and the specs (W3C’s HTML 4 and XHTML 1 series) said it shouldn’t be done. But it worked. And sometimes this was bad: no matter where the<style>element appeared in the document, its rules would apply to the entire document (based on the selectors used, of course). This could lead to authors writing a “local” stylesheet meant to apply only within an area of the document but could accidentaly restyle other areas.HTML5’s scoped attribute proposal was meant to address this: it would tell the browser that the styles in that sheet would only apply to the
<style>‘s parent element and its descendants. Also, at some point<style scoped>was also required to be the first child of its parent, making it very clear for anyone reading the HTML code what the scope was. The style element without the attribute remained valid only within the<head>element.Time went by and not enough vendors implemented the new feature (Firefox and Chrome included some experimental support), so it was eventually dropped. The browser behaviour remains as it was before HTML 5, but the current spec at least documents it:
<style>is now legal/valid throughout the document, but the spec warns about the potential side effects (restyling elements accidentally).As per the spec,
<style>within<body>should validate. However, the Nu validator (tagged as experimental) still complains about it. There is an open issue regarding this: https://github.com/validator/validator/issues/489Normally with Blocks, all the needed css is added in the head, however, you are loading the second part of your page outside the main content loop. In a div called “home_2”. If you are concerned about the validator and want to remove those errors move that section of your page into the main content so it’s part of the main loop and not an extra area. That will allow the css to be picked up in the head of the page.
Ben
-
This reply was modified 6 years, 3 months ago by
Ben Ritner. Reason: fix styling
In forum: Ascend ThemeTopic: icon box issue
January 13, 2020 at 1:00 pm #243179Hi,
I want to submit an icon box into my pagebuilder. But with the siteorigin and visual editor the shortcode is not working. I dont see an icon box coming up on the frontpage. A single icon is working though, what could be wrong?
I have this shortcode : [iconbox title=”Profiel” iconcolor=”#fcfcfc” iconbackground=”#1e73be” description=”heel veel” icon=”kt-icon-user” iconsize=”48″]
In forum: Ascend ThemeIn reply to: video gallery
January 13, 2020 at 12:55 pm #243175Hi Hannah,
I have set the summary to image with video lightbox.
Here is a link : http://mt-tv.wpfixer.nl/index.php/afleveringen/ to the page with portfolio template. There is no video there.
see here my settings: https://snipboard.io/E3w4f7.jpg
In forum: Virtue ThemeJanuary 13, 2020 at 12:41 pm #243173On your page where you have the text “Conditions de réservations ” under that there is a “fancybox-hidden” div which contains an image that doesn’t exist and some text. There is an error on your page because of it. Can you tell me why that is added?
Ben
In forum: Ascend ThemeIn reply to: How to change Link colour
January 13, 2020 at 11:39 am #243169Hey,
You can’t target affiliate links with CSS, you would have to give those links a specific class if you wanted to target them differently then other links on your page.You either need to make all your links blue, or add custom code each time you want a blue link instead of a normal link.
Ben
In forum: Ascend ThemeIn reply to: duplicate content
January 13, 2020 at 11:32 am #243167Hey,
Just because something is duplicated it doesn’t make it an error. You just need to understand why it’s duplicated. Every site has duplicated content.Scanners like siteliner are not going to give you context for things, they can only output what a computer scanner gets, it’s up to you to interpret the results.
Your home page shows some blog posts, so does your blog page, that is what you want. It’s not an error because both pages have some of the same content.
This is a search for nothing, meaning someone searched without a search term. This isn’t something that will actually happen. This again is another scenario where you need to interpret the results.
https://www.adventuretravelcoach.com/?s=Search results are not cached, because there are endless searches and no way to cache every one, instead when a search is started that runs a new query. That term is then cached for a short amount of time but in general, all searches will be uncached because of the nature of a search.
I hope I’m giving you some clarification. Nothing you posted tells me there are any errors or anything wrong your site.
Ben
In forum: Ascend ThemeHi there.
I previously had a sidebar set up on my products page. It has since disappeared, I’m trying to retrace my steps but I can’t figure out when.
Both the settings on the actual page and in Theme Options –> Shop Archive pages are set to display sidebar.
On the page it has the code <div class=”main col-md-12 kt-nosidebar clearfix” role=”main”>
Anyways I’m just wondering if I’m missing something as I can’t figure out why it’s doing this.
I will paste links in a reply.
-
This reply was modified 6 years, 3 months ago by
-
AuthorSearch Results




