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: Virtue Theme
In reply to: Layout question(s)
Everything was as intended until you told me to switch from the child theme to the theme. I understood you to say that my child theme was saved. I don’t understand why it can’t be put back as it was.
I’ve spent hours working on my home page last night and this morning. How to save that work before we go to any sort of backup? It’s at Pages|Home in my admin. My website has a backup installed. You asked for access to my admin, and you have that. I really just don’t know enough to even answer these questions with much intelligence. If you would please just go in there to see what’s there, perhaps we can move forward more efficiently. Before I do anything in my site, I watch videos and/or read articles so I have a clue. Right now, I have no clue, and that’s really got me twisted up inside.
ETA: I remember saving a php file to my drive when the child theme was newish, but I don’t recall it’s name. I think it contained the child theme configurations or similar. It’ll be whatever it would called by default. If I had it’s name, I could probably find it. Would that file help?
-
This reply was modified 6 years, 5 months ago by
Dave.
In forum: Ascend ThemeIn reply to: Editing Categories
On your shortcode page,
http://docs.kadencethemes.com/ascend-premium/shortcodes/
it shows using quotes around certain options. Changing the “cat” option to cat=”assembly-setuo” did not work either. I even tried changing it from “cat” to “type”, with and without the quote marks around the slug and then nothing printed.
In forum: Ascend ThemeIn reply to: Editing Categories
No, that doesn’t work. I tried it on both a page with the new blocks editor and a classic editor using PageBuilder. All portfolios show, not just one. When you had […cat=photos] I assume you meant the slug name for the category named photos. I have no single word portfolios, so I tried assembly-setup, the slug for it. But no, it did not work.
In forum: Ascend ThemeTopic: Missing Icon Borders
Hey,
I’ve just installed the latest update you guys pushed out, but after having a quick look at my site – I’ve noticed the simple line style borders around some of my icons are no longer showing up.
(They’re still visible when I go to edit the page)
I’ve made up a quick picture to show what I mean.
Appreciated if you could look into this!
Cheers,
ChrisIn forum: Ascend ThemeHi Ben,
The product categories widget on the shop page doesn’t load the category items when an option is selected from the dropdown menu. However, the blog post category widget with the dropdown option enabled works fine.
Could you please look into this? Because I’m not sure whether I missed any configuration or it’s a bug.
Thank you!
—
MinhajulIn forum: Membership ForumsThis reply has been marked as private.November 8, 2019 at 4:14 pm #240229In forum: Membership ForumsNovember 8, 2019 at 4:13 pm #240228Thank you. I added it and the Menu is now correct all the time.
Do more testing shows that the CSS cause some other problem.
It fix the not shown menu fine, but on some other pages a 2nd vertical scroll bar appears on smaller resolution and you can not scroll though.
Test as example on mobile chrome. Same behavior in making the desktop browser very small.It seems related to the fix…
@media (max-width: 767px){ #inner-wrap { overflow-x: hidden; } }… because when I delete it out of CSS, all is fine again. I post a page with the problem in the next post in private data.
In forum: Membership ForumsIn reply to: Kadence Blocks Pro: Modal Width
In forum: Virtue ThemeIn reply to: Layout question(s)
Hannah, I have no idea how to fix this. When you asked that I give you access to my admin, then suggested that I do something, I just imagined you understood what you were asking me to do. I didn’t understand. I wish I hadn’t done that. I wish you hadn’t asked me to. I’m in a real mess now. There was stuff in there that’s gone from my site now. So far, I know that the information in my custom tabs is gone, and that’s for every product page. If you’re not able to help me fix this, could you please tell me where I can turn?
My whole website has issues that were corrected a long time ago. Things are displaying that shouldn’t be. I really hope you can help me get this back to where it was.
-
This reply was modified 6 years, 5 months ago by
Dave.
In forum: Membership ForumsIn reply to: Overlay text on home page header
This reply has been marked as private.November 8, 2019 at 1:07 pm #240214In forum: Membership ForumsNovember 8, 2019 at 12:09 pm #240212I am really sorry for the back and forth.
The Menu Problem is only fixed, when scrolling through the content and then go up again and then click the menu. Then the menu works fine.
But just open the page and open the menu directly, the menu is still broken. No content inside the mobile menu.
So at least, the menu-problem still exist. Even now, and I finish my work now for today. 🙂
Just go the the website on mobile, open the menu and see a empty grey overlay.Thanks in advance!
In forum: Virtue ThemeIn reply to: Layout question(s)
Thanks. Okay, this is on that page:
Broken Themes
The following themes are installed but incomplete.Name Description
Virtue – Premium – Child Theme URI: http://example.com/ Description: Child theme for the Virtue theme Author: Dave Burrows Author URI: http://www.meadowcroft-dyeworks.com Template: virtue_premium Version: 0.1.0 Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.WP doesn’t give me the option to go back to the child theme or whatever I had been using of it. Still no shrink.
In forum: Pinnacle ThemeIn reply to: Kadence Slider disappears when opening a new tab
In forum: Virtue ThemeTopic: Slider for custom post type
November 8, 2019 at 11:05 am #240202I’m building a site for a client where I will have a custom post type that I’m creating for events. I want to have a slider on the home page with automatically generated content that pulls the featured image, title and excerpt from posts in that custom post type. Is there anything built into any of your themes or plugins that will allow this? I know in Virtue there is an option under Theme Options > Home Slider to do “Latest Posts”, but even though I have created blog posts it doesn’t show anything and I don’t see a way to configure it. I also looked in Ascend and found under Theme Options > Home Page Header to do “Post Carousel” and I can choose different custom post types, but it’s a carousel.
I can do some basic coding to do it if there’s an option to tie into the slider system. If there’s not a way to do this, that’s fine as well. I will look for another solution.
In forum: Virtue ThemeIn reply to: Add SKU in product list
November 8, 2019 at 9:26 am #240179I don’t suggest two pagebuilders so best to add with php in the function file of your child theme, would look like this:
/** * Display Simple Product SKU, in WooCommerce loop pages, after item name * * @return void */ function simple_product_sku_before_loop_item_title(){ global $product; $type = $product->product_type; $sku = $type == 'simple' ? $product->get_sku() : ''; echo $sku; } add_action( 'woocommerce_shop_loop_item_title', 'simple_product_sku_before_loop_item_title', 30 );Ben
In forum: Virtue ThemeNovember 8, 2019 at 9:17 am #240177You would just need to use the email account you have changed it to, I”ve updated that to reflect on your api key page.
I hope that helps,
Ben
In forum: Virtue ThemeIn reply to: Form block
November 8, 2019 at 9:13 am #240175Hey,
You can define the subject, so in the subject you can say, enter the page name so that you have a reference.Also when saved to the database it will save the page name as part of the entry meta.
Entries are found in under Kadence Blocks in the admin, “form entries”
Ben
In forum: Virtue ThemeTopic: Form block
Hello!Is there any way to add the page url where the form was submitted to the email? Very often people send a message like “please, tell me more about this tour” and there is no way to know which one unless you can see page where they left this message.
Also, I checked box “save to database”, where can I review all left messages if there was some problem with email?Thank you!
In forum: Virtue ThemeIn reply to: Layout question(s)
In forum: Virtue ThemeIn reply to: Add SKU in product list
November 8, 2019 at 6:59 am #240166Hello:
I always use Page Builder by SiteOrigin since it is what I know, I can also activate Kadence Woocommerce Elementor and continue using Page Builder by SiteOrigin, or to use Kadence Woocommerce Elementor I must deactivate and delete Page Builder by SiteOrigin.
I created a child theme of the Virtue Premium theme.
I have no problem touching some CSS or PHP.
Thank you. -
This reply was modified 6 years, 5 months ago by
-
AuthorSearch Results


