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: Make Product Titles & Text Capitalized
2. & 3. Ideally I would like to have the product titles capped on the product pages, sometimes a word or two would move down to the line below it and I don’t want that but I would like to have the title capped (maybe reduce the font size on them a bit but not other text that may be associated with the same typography heading). The product text under the title needs to stay small not capped because it was a bit hard to read all capped.
6. shop and category sidebar are assigned no result I must be missing something else
7. got ya makes sense, what about when you click on may category links (secondary menu nav) most of them take you to the wrong category how I can fix that?
thanks
In forum: Pinnacle ThemeTopic: Page title
On some pages I am using the page title as an image and have a Page Header background Overlay Opacity set to 0.6.
However, on all the shop pages I want to just use a simple background colour without the transparency.How can I remove the transparency just on these pages as it changes the colour? Can it be done with CSS please?
Thanks,
RebeccaIn forum: Pinnacle ThemeIn reply to: Embedding Spotifiy
That’s odd, it’s working fine on my test site. I’m able to stack a whole bunch of embedded players on my page. Are you using the embedded code from spotify that places it into an iframe? You definitely want to use the embedded and not the URI code. The URI doesn’t work on my site.
Any chance you could post a link to the page that you’re having an issue with. Also, one thing that’s worth trying is going into your plugins and deactivating them one by one to see if you’re getting any conflicts there.
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
2, 3. What font do you want to use? Let me know and I’ll get you the CSS to get it looking right. I may have been making a mistake before and want to be sure it works before I give you more CSS to mess with.
6. As for the shop sidebar, that is assigned via Theme Options> Shop Settings. Be sure you’re assigning the right one for your category page as well. You can find the options for that directly below the main shop sidebar. Try setting it there and let me know if it works.
7. Alright, the issue we were running into here was that you wanted the space between the sale sign and the product titles to be greater on single products, and I missed the previous thread where you wanted to eliminate the padding elsewhere on your site. Fortunately that’s an easy fix. I’ve changed the CSS to eliminate that space on all places on your site except the individual products. Please let me know if there are any other issues here.
If you can provide the information regarding the font you want to use, we should have your product titles looking the way you want them.
Thanks for your patience.
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
2. and 3. right because like I said when I added the code and tried to change the font to mine instead os san-serif you had it did not change so I removed the code
6. My shop page does not shown a sidebar option, I looked in screen options for it and its not there
7. I did not want any white space under my secondary nav on the shop or home page (if you click on the category links in the menu not the dropdown you will see some of them take you to the wrong category page)
In forum: Virtue ThemeTopic: Blank Preview
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
6. Are you adding it to your sidebar via Appearance> widgets? You’ll likely want to create a new sidebar specific for the page you want this filter on in Theme Options> Misc Settings. Then assign the widgets to that sidebar, then assign that sidebar to the page using in the page edit screen.
7. The reason for this is because you had previous CSS that got rid of the space, then you wanted the space again on another page, so I changed the CSS to get the space back on that page.
Let’s start from scratch with this. Go through your site and specify where you want this padding and I’ll adjust the CSS accordingly.
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
6. I added a widget for the yith filter plugin and it doesn’t appear in my sidebar
7. I just noticed that the white space issue on my shop page now exists on my home page, what is going on with these issues? I’m feeling less confident using this theme as I get closer to launching my site.In forum: Virtue ThemeI am experiencing an issue with the sort/refine buttons on the property results pages and Market pages (of my idx plugin): Looks like the theme is applying HTML and CSS to the sort and refine buttons and other drop down selectors. When I remove the HTML and CSS from the theme (using firebug), the sort and refine menus return to normal. (Please review the attached screenshots in the link below). Can you recommend a workaround?
In forum: Virtue ThemeJuly 14, 2016 at 11:41 am #103420https://docs.woothemes.com/document/woocommerce-shortcodes/#section-11
You can see all the terms in woocommerce docs ^^
[product_category category='fleurs' per_page="40"]Ben
In forum: Pinnacle ThemeIn reply to: Embedding Spotifiy
In forum: Virtue ThemeIn reply to: Change color of a single menu button
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
1. thanks
2. when i tried that it changed my font and i change the font name in the code and it didn’t work
3. same as above
4. thanks
5. thanks, the filter is now showing my category pages at it should
6. so i installed that do i still keep my setting the same for displaying filter on the shop and category pages?thanks kevin
In forum: Pinnacle ThemeIn reply to: Embedding Spotifiy
Thanks for your help, but that’s not the problem.
I’m building my page with use of the Site Origin’s Page Builder plugin. So I’m actually stacking rows, and filling each row with a widget.
I just discovered that I’m able to embed Spotify, when I de-activate te Page Builder plugin. However, when I do that, I completely lose te layout of my site.
So, I suppose there’s a conflict with the Page Builder plugin. Do you have a solution to embed Spotify in my page by using Page Builder. Which widget should I implement on a row?Thanks in advance!
MeikeIn forum: Pinnacle ThemeHello,
I added a code-snipped to get a Login-/Logout-link in the menu. Together with the SimpleModal-plugin I get a modal login form, where you can login/logout and it redirects you to the current page.
Here is the code:add_filter('wp_nav_menu_items', 'add_login_logout_link', 10, 2);
function add_login_logout_link($items, $args) {
$pageURL = 'http://';
$pageURL .= $_SERVER['HTTP_HOST'];
$pageURL .= $_SERVER['REQUEST_URI'];/** if( !($args->theme_location == 'nav-main') )
return $items;global $pinnacle;
*/
ob_start();
wp_loginout($pageURL);
$loginoutlink = ob_get_contents();
ob_end_clean();
$items .= '<li>'. $loginoutlink .'</li>';
return $items;
}My problem is that the Login/Logout-link appears on every menu on the site. How can I specify to appear only on main menu? I tried it with the commented out part of the snippet, but it doesn´t work.
Thanks…
DirkIn forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
1. I removed some CSS that was reducing this space. It seems to be displaying fine now.
2. Try this CSS instead:
.product_title { text-transform: uppercase; font-family: san-serif; }3. The above CSS will target those fonts as well. Just change the sanserif to whatever you want it to be.
4. This CSS will remove that space on your shop page only:
.archive .contentclass { padding-top: 0; }5. This CSS will change the filter text only. You’ll have to adjust the size according to your needs:
ul#filters .postclass a h5 { font-size: 20px; }6. It appears that the filter is working as it should. The filter there is only meant to go through the content of a single page. You would have to use an ajax filter in order to pull content from your entire store. This plugin would allow you to do so:
https://wordpress.org/plugins/yith-woocommerce-ajax-navigation/Let me know if this is helpful.
In forum: Virtue Theme1. Here is a good starting point if you’re looking to build a child theme. You can download one from here and the page will walk you through activating it:
https://www.kadencewp.com/child-themes/2. Here’s some CSS that will reduce the font size of some of those tags. If you want to change anymore, specify which ones and I’ll give you the CSS for it.
a.tag-link-16.tag-link-position-1 { font-size: 16px !important; } a.tag-link-31.tag-link-position-13 { font-size: 14px !important; } a.tag-link-38.tag-link-position-17 { font-size: 18px !important; } a.tag-link-42.tag-link-position-19 { font-size: 18px !important; }Be sure you’re placing custom CSS into Theme Options> Advanced Settings.
In forum: Virtue ThemeIn reply to: Make Product Titles & Text Capitalized
too funny thanks!
1. my question above regarding the product title and sale sign on each product, the code provided did not work
2. I was given the code below to make the the title and short description capped. I now just want the title to be capped and not the description..single-product .summary.entry-summary {
text-transform: uppercase;
}What would be the code to just have the product titles capped?
3.I also want to change the font for the product titles on the shop and category pages. Where is that?
4. Just noticed that there is a gap of white space between my shop page image and my secondary nav that never existed, I did increase the height of the image a day or so ago – update the gap is gone and i have done nothing just finishing writing this…
5. Where do I change the font size for shop and category page filters? or which one heading in typography? I would assume that if I change whatever you suggest it will also change top nave links which I don’t want to do just the filters.
6. Also with the filters they don’t seem to load the correct amount of items for each catergory/filter and I notice at page numbers at the bottom don’t change as well
7. My secondary nav links a
thanksIn forum: Virtue ThemeHi,
I use the shortcode “product_category” in the content page as follows :
[product_category category=’fleurs’]This category contains 38 items placed in 4 subcategories containing respectively 12,8,14,4 products. Strangely only the first 4 products of the first category and the 8 products of the second category are displayed (4 rows and 3 lines)?! I guess there is a rule somewhere fixing the number of products displayed but I can’t find it.
I tried to add number=’34’ as a argument but that did’not changed anything.
Could you help ? Thank you.
Gérard
In forum: Virtue ThemeIn reply to: page layout
-
AuthorSearch Results


