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: Kadence BlocksSeptember 8, 2020 at 9:38 am #256512
Hi Team. We switched over to Kadence Blocks and Kadence theme from Beaver Builder and first just want to say THANK YOU! Our site is loading 2X+ faster and we are getting 90%+ scores in GTMetrix, etc. vs C,D & F scores before!
In Beaver Builder I was able to use this short code:
[fl_builder_insert_layout slug=”337634″ type=”fl-builder-template”]
Or this PHP:
function griffin_add_bb_2_dashboard() {
$template_id = 337634;
FLBuilder::render_query(
array(
‘post_type’ => ‘fl-builder-template’,
‘p’ => $template_id,
)
);
}add_action( ‘woocommerce_account_dashboard’, ‘griffin_add_bb_2_dashboard’ );
To display a page that existed elsewhere on the site in another page and/or (via the PHP example above) into our woocommerce account dashboard. Is there anything similar available using Kadence blocks or Kadence theme that I can use to insert content from one page into another?
Thanks so much.
Griffin
In forum: Membership ForumsSeptember 8, 2020 at 9:22 am #256509Upon further research I have found that Kadence uses index.php to display archive pages.
In forum: Virtue ThemeTopic: Color area under the menu
Hello,
for design purpose i want to create a black area under the menu. Like this:
I put the following code into the custon css:
.page-header {
border-top: 35px solid #000000;Works very good, but NOT on the woocommerce product-page:
I wonder is there a better way to achive this?
Thank you very much.
JMIn forum: Membership ForumsThanks Ben. We’re going to research further the use of Block Templates I think we can use them effectively with K Blocks/Place Holders and perhaps ACF elements for a Staff page in preference to a custom post type and likely use a similar method for Home Page – fingers crossed. Does that sound feasible?
In forum: Kadence ThemeSeptember 7, 2020 at 10:27 pm #256490Hey,
The issue is caused by your lazy load plugin. Browsers like firefox and chrome are implementing a check for ratio before the image loads so that they can define the size the image will be once loaded a paint that out. This new implementation is built for native lazy loading, you, however, are using a plugin to implement and your plugin is adding a placeholder in the src fields: https://cdn.pixelxcode.com/asset:https://www.pixelxcode.com/wp-content/plugins/wp-compress-image-optimizer/assets/placeholder.svgThat placeholder is square, so the browser sees the image has a max-width of 190px and paints out an area of 190×190 for the image. The idea is that later when the image is actually loaded the whole page doesn’t have to resize so this is to prevent janking.
But because of your lazy load plugin you are giving the browser the wrong ratio. Once the lazy load switches the image placeholder out with the real image https://www.pixelxcode.com/wp-content/uploads/2017/03/pxc-logo.svg your ratio changes and now you have a 190×38 ratio image. However, this happens after the sticky header is set with the header size.
The reason you don’t see this all the time is because once your browser has cached your resources the image is loaded fast enough that that placeholder size is already switched by the time the sticky header is set.
To fix:
Option 1: In your lazy load plugin settings exclude the logo from being lazy loaded, it’s at the top of your screen so generally you really shouldn’t be lazy loading it anyway.
Option 2: Add css that will predefined the size of your logo so that you override the browsers check for ratio.
.site-branding a.brand img { max-width: 190px; max-height: 38px; }Option 3: Use native browser lazy load instead of the placeholder replace method.
I hope that helps.
Ben
In forum: Kadence ThemeSeptember 7, 2020 at 4:50 pm #256482Hello,
I have already posted about this issue through the FREE Support page, so, sorry for the redundancy.
In brief – when I add the Header Cart widget inside the Mobile Menu Off Canvas fly-out, and IF the cart is set to POP-OUT, then the CART POPOUT is being hidden under the Mobile Menu Flyout.
I was wandering if you could make a change so that the Cart fly-out (and also SEARCH flyout) always have the HIGHEST Z-index, i.e. being shown ON TOP of the MOBILE menu fly out
In forum: Kadence ThemeIn reply to: Product pagination
September 7, 2020 at 3:35 pm #256478Hi Michael,
Adding
.pagination .page-numbers { color: #fff; border: 1px solid rgba(255,255,255,0.4); background-color: rgba(0,0,0,0.8); } .pagination .current { border-color: var(--global-palette-highlight); background: var(--global-palette-highlight); } .pagination .dots { border: none; padding-left: 10px; padding-right: 10px; }in Customizer’s Additional CSS should make it look readable and somewhat better like this: https://d.pr/i/YFJvDw.
In forum: Virtue ThemeTopic: text not centered in row
Hello
I have the h1 text styled to be centered in the yellow banner on this page
*Login to see link udWhile it is center aligned in the widget”, it shifts to the left within the row.
Thank for you help!Carrie
In forum: Virtue ThemeTopic: Lazy loading problem
Hi at kadence,
the blog section on my startpage does not load if I scroll down the page.
It does load, if I’m refreshing the page.
I deactivated the caching plugin, but the problem remains…
*Login to see linkDo you have any suggestions?
Thanks
MatthiasIn forum: Membership ForumsTopic: Kadence Blocks not working
I have The Theme and the Blocks installed in a website, but I can not edit the pages with The blocks plugin or even Guntenberg.
Here is an image of what an old page looks like:
and here is how a new page editor looks like:
Let me know if you can check that.
In forum: Ascend ThemeTopic: Odd Attribute Filter Widget
Hi,
I have a pretty crazy situation with this widget in the sidebar and I have to deliver by end of this week, so I’d be happy if you could at least give me some ideas.
Situation: products will have 3 categories and 1 or 2 attributes as follows:
1) one is Artist Name (Name Künstler) – that is only used for the widget filter – all products have it.
To test, I have set up 3 products (one per category), each have this attribute but different values: Abc, Bcd, Cde (see product name).2) the second attribute will be used only for one category of products (Plakate) to generate 2 variations.
Only this attribute is allowed to show variation options on the frontend (product single page).On the Shop page I can see in the widget dropdown all 3 values of the (first) artist attribute and filter is working ok.
Out of the 3 category pages only one category page shows the filter widget: category is Künstlereditionen, product “3_test_Kunstler_Cde, attribute “Cde”.
From the other 2 category pages (Plakate, Künstlereditionen) the widget is missing as if there is no matching product, yet you can see the products in the loop and all are ‘on stock’.
Menu item “Producte” is a parent category for the 3 categories. It is only showing the “Cde” attribute in the widget dropdown…
Please excuse the German pages, didn’t have time to translate yet.
Thank you for your time,
BG AndersIn forum: Membership ForumsIn reply to: Kadence Pro: header account element issues on mobile
September 7, 2020 at 10:46 am #256458Hey,
1. What do you have set for “Label/Icon/Image URL” under the logged-in view?2. Mobile doesn’t have a “dropdown” it would all be part of your mobile navigation which can be custom and different from your desktop.
Also if you link the account page to the icon they would see all your account navigation in the page content of your account page.
Ben
In forum: Virtue ThemeIn reply to: Blog pages counter 0
September 7, 2020 at 10:38 am #256456In your settings > reading can you make sure the ‘posts per page” setting matches what you have set on the blog page?
Ben
In forum: Virtue ThemeIn reply to: Accelerated Mobile Pages
September 7, 2020 at 10:37 am #2564551. Compress components with gzip. You should be doing this through an optimization (caching) plugin. I suggest you make sure to install this.
2. Lazy load background images, this will save a lot. (you can find this in your settings)
3. Use Kadence Blocks and our form block for your contact page. Our block is much more optimized then contact form 7 and it will keep you from having to use the contact form 7 Recaptcha which loads on every page of your site and you don’t need that. You can enable Recaptcha in Kadence blocks and it will only load on the page that needs it.
see: https://www.kadencewp.com/blog/need-for-speed/
Ben
In forum: Virtue ThemeIn reply to: Youtube shortcode
September 7, 2020 at 10:23 am #256453If I put every video in a new row in Page Builder, and add columns to right and left, this seems like a lot of work given that I have videos on almost every page of the website. Are there any other options?
There are but you will have to add something, code is another option.
If you edit the text widget you are adding the videos in, then in the right side click on attributes and in the CSS Declarations section add:
max-width: 600px; margin-left:auto; margin-right:auto;Ben
In forum: Virtue ThemeIn reply to: Rev slider
In forum: Virtue ThemeIn reply to: Rev slider
September 7, 2020 at 10:07 am #256449Hey,
In your pages use the “feature” page template and then in the page settings you can select it to show above the header.http://docs.kadencethemes.com/virtue-premium/templates/feature/
I hope that helps!
Ben
In forum: Virtue ThemeTopic: Rev slider
In forum: Ascend ThemeIn reply to: Video shortcodes
September 7, 2020 at 8:42 am #256440Hi Hannah,
1. See attached pics – it’s the Site Origin shortcodes. When clicking “Add shortcode” it simply adds the start and end column tags. It doesn’t add 2 columns and placeholder text like it used to. The result is that no columns are atually created.
2. I have the Siteground optimiser plugin installed but not active. This has a caching option I believe.
3. I don’t have a shop page. Sorry I wasn’t very clear on this. See the picture of my existing menu. What I would like to do is move the “features” page into the sub-menu, and change the text in the main menu to something like “Product”. I don’t want to have to create an actual page called “Product”. I simply want it to exist as a logical navigation label to group actual pages under. Is this currently possible, and if not can it be developed?Thanks,
MattIn forum: Membership ForumsIn reply to: SiteOrigin Page Builder plugin problems
Hi Angela,
Based on the error message you’re getting and the screenshot it looks like you’re working in the block editor. When you create/edit a page you need to specifically select page builder as the editor. Then you cannot switch back and forth between editors. Does this make sense? Let me know if the issue remains.Best,
Hannah -
AuthorSearch Results





