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: Schema warnings
February 10, 2021 at 11:29 pm #263434Hi,
I’ve put this on my list to change. I believe this is only showing because the schema tool is reading the page incorrectly.I should have an update out in the next day or so.
Ben
In forum: Virtue ThemeIn forum: Kadence BlocksIn reply to: Two small bugs
February 10, 2021 at 4:22 pm #263422Hey,
Loading an Iframe inside of tab or accordion is not advisable. The way browser load iframes require that they paint them in the page, when you hide from load it causes the browser to try and rerender when it’s opened and this almost never works.There are css hacks to trick the browser by rendering with pixel space but hiding the pixel space in an overflow hidden. This is generally a bad idea but would get you the most consistent results if you are forced to do this.
.kt-tabs-wrap .wp-block-kadence-tab { display: block; visibility: hidden; height: 0; padding: 0; border-width: 0 !important; } .kt-tabs-wrap.kt-active-tab-1>.kt-tabs-content-wrap>.kt-inner-tab-1, .kt-tabs-wrap.kt-active-tab-2>.kt-tabs-content-wrap>.kt-inner-tab-2, .kt-tabs-wrap.kt-active-tab-3>.kt-tabs-content-wrap>.kt-inner-tab-3, .kt-tabs-wrap.kt-active-tab-4>.kt-tabs-content-wrap>.kt-inner-tab-4, .kt-tabs-wrap.kt-active-tab-5>.kt-tabs-content-wrap>.kt-inner-tab-5, .kt-tabs-wrap.kt-active-tab-8>.kt-tabs-content-wrap>.kt-inner-tab-6 { visibility: visible; height: auto; padding:20px; border-width: 3px 0px 0px 0px !important; }I don’t foresee adding options to change the opacity of some or a single gallery item. You can always select specific gallery items with css, for example, if you want to select the 4th item you can use css like this:
.kadence-blocks-gallery-item:nth-child(4) { opacity: 0.3; }Ben
In forum: Kadence ThemeIn reply to: Category Page – Number of categories to display
In forum: Ascend ThemeHi there. I’m using two logos on my website, a colored version and an all white version. I have the primary set to white and then I’m using CSS to show the colored version on certain pages only. When I switch to a mobile width starting at 1024 it doesn’t read the CSS anymore and displays the all white version. Is there a way I can target those certain pages starting at that width to show a certain logo?
Here’s how I’m changing the logo at fullwidth:
.page-id-363 #logo img {
content: url(/wp-content/uploads/2020/09/CBA-Logo-Colored-1.png);
max-height: 150px;
}But when I add this it doesn’t work. It still shows the white logo
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : landscape) {.page-id-363 #logo img {
content: url(/wp-content/uploads/2020/09/CBA-Logo-Colored-1.png);
max-height: 150px;
}
}-
This topic was modified 5 years, 2 months ago by
Stephen.
In forum: Pinnacle ThemeHey Sarah,
Do you have the transparent header enabled? Can you post a link?
Gutenberg is the new default WordPress editor. When creating a new page it should open in Gutenberg automatically. If this is not the case for you may have the classic editor plugin installed. Deactivating that should fix. It looks like in your screenshot you’re using page builder by siteorigin? There isn’t a way to switch between editors. You will need to re-create the page using the Gutenberg editor.Best,
HannahIn forum: Kadence ThemeIn reply to: Woocommerce styling issues, Header, Sticky header
February 10, 2021 at 7:26 am #263386Hi Ben,
big thank you for new cart styling, so I could remove my custom.css :). Working perfect.
I want to kindly ask if you could add this fetures in the next releases. That would make my happiness complete ;):
a) Can you please add an option for Header Social Element (Desktop and Mobile)? A switch to open the link in a new tab. Yes or no. At the moment all icons open the link in a new tab. For example when I add a mail icon and want to point it to my contact page it would be nice to not have “target _Blank” :).
https://ibb.co/GCB0kwzHave a great day,
TobiasIn forum: Ascend ThemeIn reply to: Homepage – padding bottom
In forum: Kadence ThemeHi Ben and Hannah and team
I am using the below code to add a class to a post if it is over 7 days old (so that I can show a “new” badge if the post is new). This works on single post fine, but I can’t get it to work on the archive (categories) pages – it seems these don’t have the same header classes – the category pages are all displaying posts listed with the “blog_grid” siteorigin widget… Any clues how I can get the below to show in these blog grid posts?
` function is_new_post($class) {
global $post;$id = get_the_ID();
$date = get_the_date( $format, $id );if( strtotime( $date ) < strtotime( “-7 days” ) ) { // if post is 7 days old or less
$class[] = ‘-NEW’;
} else {
$class[] = ‘-OLD’;
}return $class;
}
add_filter(‘post_class’, ‘is_new_post’);
`I think what is happening is that the single posts have an <article> tag that the above is prepending the new class to, but with the blog grid, there is no <article> tag, only “class=”entry-title”
In forum: Virtue ThemeHi Hannah,
I have both: Kadence Blocks – PRO Extension & Kadence Blocks – Gutenberg Blocks for Page Builder Features.
As I mentioned, I normally don’t use the blocks, but used them to I could make the images on the home page clickable.
When I switched off the plugin Classic Editor, it looked like something had to be updated.
For some reason it’s working now. Strange.
Have a great day.
KathyFebruary 9, 2021 at 4:07 pm #2633651. I d like the margin on my blog achrive page so there a bit more grey at the left , so I actually have it also look like column 2 (see attachment)
2. I like more padding (the grey) on the left of the frame of my post (the white background) in a single blogpost. H
How do I do that?
In forum: Kadence BlocksIn reply to: Bottom margin inconsistencies
February 9, 2021 at 12:38 pm #263360Hey,
You wrote: “My point is this: the margin/padding settings in the editor don’t VISUALLY match the margin/padding when the page is saved.”That is because Gutenberg is not an exact visual representation of the front end of your website. It never has been because it’s not a front end editor. It was designed specially not to be a front end editor just designed to be close. However the css in the backend is totally different and there is extra spacing added between every block in the editor.
There has been tons of discussion and arguments around this since it’s original launch.
The good news is that the Gutenberg team is slowing moving towards getting the editor closer to the front end experience. Later this year they will be moving the editor into an iframe which will allow for styles to be added exactly like the front end. There are still some issues with this and I don’t expect a pixel perfect representation of a site to be achievable inside the Gutenberg editor there is for the first time in it’s development more effort to get us there.
I’m with you in that this was a huge limitation from the start and I’m excited that we are moving in the right direction.
Ben
In forum: Kadence ThemeIn forum: Ascend ThemeIn reply to: Homepage – padding bottom
In forum: Kadence ThemeIn reply to: Elements Conditional Message in Order Review
February 9, 2021 at 8:36 am #263354Thanks you Hannah,
I’ve reviewed that plugin; seems it doesn’t allow identification of zones as a condition 🙁
Do you have a good board to post custom code requests as I’m thinking it more like a combo of the 2 bits of code here:
https://wordpress.stackexchange.com/questions/332811/woocommerce-get-selected-shipping-zone-id-for-the-current-user
https://writenowdesign.com/blog/wordpress/woocommerce/add-message-top-bottom-woocommerce-checkout-page/#add_phpAny idea on where I can post for help using these 2 methods?
P.S. Thanks for your guidance; I’m amazed at the breadth of your knowledge and speed of replying…no smoke, just praise 🙂
In forum: Kadence ThemeIn reply to: Starter template without plugins
February 8, 2021 at 5:08 pm #263337Hey,
We don’t have a starter template that is designed without Kadence Blocks. Given that it’s our plugin we don’t plan on creating one 🙂Just a note Kadence Blocks only loads when it’s used, if you have it installed but don’t have any blocks active on a page then no resources are loaded on that page.
Ben
In forum: Kadence ThemeIn reply to: Infinity Scroll
February 8, 2021 at 4:43 pm #263330Hey Gilbert Cattoire
Your blog page 2 leads to a 404 page: https://www.iledebrehat.fr/actualites/page/2/
I most often see this happen when someone customizes the permalink structure in a way that won’t work or when someone makes a child page of your latest posts page.
Can you confirm your permalinks are normal and that you have not created a child page of the blog page?
Ben
In forum: Kadence ThemeIn reply to: Infinity Scroll
This reply has been marked as private.February 8, 2021 at 4:41 pm #263329In forum: Membership ForumsTopic: Kadence WP website problem
February 8, 2021 at 3:11 pm #263323All. I think I’m losing my mind. I’m trying to login to my account to get my license key from an iPad. Nowhere on this website can you get to your account page to see license codes or available downloads. Or am I missing something.
In forum: Membership ForumsIn reply to: Ascend styling mini cart
-
This topic was modified 5 years, 2 months ago by
-
AuthorSearch Results


