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 Theme
Hey,
There isn’t a built-in way to set this up, but you can create custom category and subcategory pages using the post grid carousel block or a woocommerce block. Or you can use css to hide the sidebar from your category pages but show it on subcategory pages. Let me know how I can best help going forward!Best,
HannahIn forum: Kadence BlocksHello everyone from Russia!:)
I use the membership and subscription plugin armember. I wanted to use shortcodes to build a profile page, but if I use Tabs block, I get an error. Or rather everything works, all shortcodes content is displayed, but all together and only on first tab of Tabs block, other tabs are empty at all. How to solve the problem, can you advise?
Thank youIn forum: Kadence ThemeIn reply to: Hide page title on mobile view only
In forum: Kadence ThemeMay 13, 2021 at 9:30 am #265795Hello,
One page on my website is one big Tabs Block. It looks and works great.
However, when the page is loaded it shows the links on the tabs for a split second and then the tabs-block jumps in place. This is registered as a huge layout shift in Google Pagespeed Insights and GtMetrix.Is there a way to have the page load in such a way that the layout shift doesn’t occur?
This is the first .CSS file being requested and it is a 301 redirect for the tabs.style.build.css:
/start-here/HeadersResponse%20*Login to see linkIs that maybe the issue?
In forum: Kadence ThemePlease strike the question about hiding a category. I’ve actually decided to just show it and work it into my site as is. I would have removed that question entirely from the post above but it appears the option to edit is gone after X amount of time.
My remaining questions for clarity: Woocommerce product page navigation arrows, disabling woocommerce product page image zoom, and if it’s possible to set default styling for advanced buttons.
Still no rush at all on these.
Thanks!
In forum: Kadence ThemeMay 13, 2021 at 6:50 am #265789I’ve added a couple of custom fields using the Advanced Custom Fields plugin, now I want to display the values of these fields on the post/single page. For example, when I click on a post an navigate to it, I want to see the full post content, then add a new section with these custom fields.
Post structure:
– Categories
– Title
– Metadata (author, dates, etc)
– Post Content
– Tags
– this is where I want the values from my custom fields to appear.Important, I’m not trying to make or display data entry fields, I just want to display the values that I entered in the custom fields when editing the posts. I know how to write all the PHP and markup to do this, but I don’t know how to integrate that with the Kadence Theme or WordPress in general.
I’m using a child theme to customize a few things so my first idea was to duplicate the single.php from the Kadence them and make a version with the extra content that I want. That is proving difficult, because it appears that the Kadence Theme is built in such a way that the code is abstracted and all over the place…
The second I idea I had was to use filters to append the custom field values to the content. I’m having trouble with this too. For example, when I use the code snippet below, the result is broken. The text inside the <a> tag is in the correct place, but the result of the_field('acf_library_url') gets prepended to the start of the content instead of where it should be (in the href attribute of the <a> tag. I’ve tried this with other values as well, such as the_title(), just to confirm that this is not caused by the ACF plugin.
My filter attempt:
function add_fields_to_content($content)
{
$URL = the_field('acf_library_url');
$link = '<a href="' . $URL . '">Link</a>';
return $link . $content;
}
add_filter('the_content', 'add_fields_to_content');So my main question is this: Can you suggest a way to add the values from custom fields to posts on my site?
-
This topic was modified 4 years, 11 months ago by
Joseph Simpson.
In forum: Virtue ThemeHello
*Login to see link
I removed the Revolution Slider Plugin on my home page, and deleted the plug in. Now the page is asking for it, even though it’s not on the page.When I went to reinstall the plug in, it’s not available or at least I cannot find it.I don’t know how to get rid of this message.
thank you for your help.
CarrieIn forum: Kadence ThemeTopic: Text and buttons on mobile
May 13, 2021 at 3:31 am #265786Hi Kadence,
On a website I made for a client, using Kadence Theme, there Welcome text and the buttons undernethe welcome text “Välkommen till…”. Client asked for the buttons “Kontakta mig” Contact me in english, to be placed “Above the fold” as they put it. Meaning, not having visitors to scroll down to see and press the button – on mobile devises.
I dont seem áble to make that happen because I used WordPress buttons. Actually I never thought of that for the mobile situation. I used Kadence Block/ Row Layout / Prebuilt Library/Header Demo. But for some reason I couldnt restore buttons I originally chose.
Anyway, if I redo the first page on the client website with the big picture, and create from scratch a new Kadence Block/ Row Layout / Prebuilt Library/Header Demo, will it be possible then, to have the buttons shown above the text “the fold”? Or will the buttons be static and placed the same way on laptop-mode as well as mobile -mode?
Is this possible with kadence Theme?
The site in question is www.*Login to see link
Thanks in advance
Stefan LindbladIn forum: Membership ForumsIn reply to: spacer not extending (full wide)
May 12, 2021 at 4:48 pm #265782When using the “contact” slug you have to select a page template, something other than “default” else WordPress will partially try to use the “contact” page template.
https://share.getcloudapp.com/X6ue1L9r
I updated that for you.
Ben
In forum: Kadence ThemeI have used Kadence themes on my site for years. So first off thank you for the great themes!
I recently decided to try the new theme as I noticed it had a few features that would be useful. Nothing urgent but a few questions.
First on the Woocommerce Single product page, is there no option to display navigational arrows? I mean baked in. I am trying to get away from adding in page builders for one or two features.
Second item, is there a way to disable “Zoom” on Woocommerce product page images. I want the lightbox functionality but not zoom? I could not find a way to accomplish this within the customizer options.
Third items is a bit more involved and it actually took me awhile to figure out what (sort of) was happening. It may well be outside of support but I’ll ask anyway. For years I’ve had a sort of “secret” category in my blog. It’s only purpose is for the RSS feed that goes to my newsletter. I didn’t want all of my posts to go to the newsletter, so I created this category that has no other purpose in site organization. The following piece of code in my child functions hid that category and while I was at in any uncategorized posts that might slip through.
function the_category_filter($thelist,$separator=' ') {
if( is_admin() )
return $thelist;// list the IDs of the categories to exclude
$exclude = array(1,235);
// create an empty array
$exclude2 = array();// loop through the excluded IDs and get their actual names
foreach($exclude as $c) {
// store the names in the second array
$exclude2[] = get_cat_name($c);
}// get the list of categories for the current post
$cats = explode($separator,$thelist);
// create another empty array
$newlist = array();foreach($cats as $cat) {
// remove the tags from each category
$catname = trim(strip_tags($cat));// check against the excluded categories
if(!in_array($catname,$exclude2))// if not in that list, add to the new array
$newlist[] = $cat;
}
// return the new, shortened list
return implode($separator,$newlist);
}// add the filter to 'the_category' tag
add_filter('the_category','the_category_filter', 10, 2);Fair warning this is code that came from a user forum but it worked. The categories are identified by post ID, so the numbers are relevant on my site. The category is visible for admin when creating posts but not to readers. When I first tested the new Kadence theme on a test site with this code in my child functions the other day, it worked. So I was surprised when I activated it on my actual site and it was not. After hours of deactivating plugins, verifying the functions code was the same on both sites, I finally realized the difference. On my live site, I decided to use the “pill” shaped categories in post meta and on the archive pages. Sure enough when I changed from “pill” design back to “normal” the hidden category returned to hidden. If it’s a simple fix to change this, I’d love to be able to use the pill shaped categories as I think they look better visually but if it’s super complicated and thus outside of support, then no problem! It might be the catalyst to re-think hiding that category – maybe I could make it organizationally useful…
And a fourth item that is actually not specific to Kadence Theme. I had this same question from Ascend which I was using previously. When using the Advanced Custom Button block in posts, I always change the colors of the button – fairly consistently to the same colors. Is there a way I’ve missed that one can set default styling for that button? The only thing I saw was making reusable content but all elements including the button text/link needed to be static as far as I could tell for that. If not and it’s possible that would be an awesome feature, IMO.
Thanks!
-
This topic was modified 4 years, 12 months ago by
Mark.
In forum: Pinnacle ThemeHey,
on my shop-page I show the catgories. When I activate “Force products into rows” the sorting is correct by category name. After deactivating “Force products into rows” the sorting is I don’t no what. How can I reach that “Force products into rows” is deactivated and sorting of categories is by name?
Thanks and regards
MichaelIn forum: Pinnacle ThemeHi Guys,
I know that most sites are moving to Gutenberg with Kadence but I have an old site that I am resurrecting and updating with Pinnacle.
On my front page I have the max allowed home blog posts displayed (18 – 3 cols). Why can I not display more? Is there any way to randomize the posts displayed so that it changes in a random way and displays all posts over time? On the other hand will this down rank the site by Google because of changing front page items too regularly?
Thanks for your input, regards, JanekIn forum: Virtue ThemeIn reply to: Change particular panel title color
May 12, 2021 at 10:05 am #265763Hi Hannah and thank you for your respons!
At first, it seemed to work, but I have the impression that the accordion name keeps changing.. so after a few minutes, the white font in the accordion title, disappeared again.
I noticed because I actually have 2 pages I need to change the accordion titles to white. I figured if you gave me the code for one page, I’d be able to figure out what it needed to be for the other page. That’s how I noticed that the accordion title name doesn’t seem to stay the same. For either pages. So the #accordionname21 that is in your code, is no longer correct.
Am I observing this correctly? Or am I missing something?
Thanks for your feedback!
LeilaPS I’ll continue this thread here and will use the other support link that you mention next time. Is that ok?
In forum: Virtue ThemeIn reply to: hide pagebuilder row to logged out user?
In forum: Kadence ThemeIn reply to: KADEME PRO THEME: Featured images
In forum: Kadence ThemeIn reply to: Single product – Sticky Add to Cart
May 10, 2021 at 11:47 am #265725Hi Hannah,
If you select “Sticky Add To Cart” on your test site and visit a product page, you’ll see the bar appear after you scroll down the page, when the “Add to cart” button disappears. It’s the normal behavior and it works fine.
But if the product is out of stock, it appears as soon as the page loads and never disappears (although it shouldn’t appear at all ’cause there isn’t “Add to cart” button on these pages so the “Sticky Add To Cart” bar is useless).
Note: maybe you don’t see it because the sticky bar is displayed only at resolutions > 1024px.
In forum: Kadence ThemeIn forum: Virtue ThemeTopic: Width of image in a page
In forum: Kadence ThemeIn reply to: Kadence Theme: Hide the Title on some archive pages
In forum: Ascend ThemeIn reply to: Remove Title Text only on all pages
-
This topic was modified 4 years, 11 months ago by
-
AuthorSearch Results


