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: Split screen css help
In forum: Pinnacle ThemeIn reply to: still sides background
In forum: Ascend ThemeIn reply to: Category Query
Hi Ben,
i know it is confusing but it relates to another question in another topic. So i want to use Category pages in the menu (also to have it easy with highlighting the parents) but on some of this pages it will only have to display a subcategory.
You and the Codex made my day! I can use the Category page AND filter out what i don’t want to show:
function my_ausstellungen_category( $query ) { if ( $query->is_category( 'ausstellungen' ) && $query->is_main_query() ) { $query->set( 'cat', '10' ); } } add_action( 'pre_get_posts', 'my_ausstellungen_category' );I think pre_get_post and the conditional tags are pretty future-safe so it looks like the ideal solution to not have to use templates.
Thank you very much once again!
In forum: Virtue ThemeIn reply to: Custom single post template
Thanks Ben,
On further questioning, it isn’t clear whether they wanted to:
a. paste text into a page and have it automatically flow into columns or
b. type into a new post and have it display in columns.I’ve demonstrated the use of Virtue column shortcodes and whilst they are nervous about editing pages, they get the idea.
Thanks for your help, I’ll close this.
Phil.In forum: Membership ForumsNovember 27, 2018 at 7:38 pm #209272I’m using WordPress 4.9.8, Kadence Blocks 1.1.5 – I used Row Layout, 3 evenly spaced columns. In each column I put a title, a photo, and a paragraph or two of text. I centered the titles and photos – which looks fine in editing mode, but when viewing the page the photos are left justified, not centered. This is on a password-protected prototyping site, so I can’t supply an easy URL for viewing.
In forum: Pinnacle ThemePage: *Login to see link
Screenshot:
*Login to see linkI would like to reduce the padding between the staff person’s title (deacon, priest associate, etc.) and the email/phone contact icons. I’d like to do this uniformly so that all rows can stay aligned.
Thanks!
In forum: Virtue ThemeHi,
I need to edit the background color and text of the search box in the Topbar of my Virtue Premium homepage. Can you tell me what CSS edits to use?
(I found a similar question in issue # #206549 but was not sure if the code would work due to it being a different theme.)
Also, is there a way to have both the Search Field AND the Cart Total in the right side of the Topbar? I tried with widgets but the results weren’t what I wanted.
Thanks,
ScarlettIn forum: Pinnacle ThemeIn reply to: How To Retain Primary Menu Border Color
In forum: Ascend ThemeIn reply to: Category Query
November 27, 2018 at 12:07 pm #209174Don’t use a template.
You can filter: https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
I don’t understand that you want though. Exaplin more what you want this category page to show? Are you trying to add another category to it’s query? Why not make a parent category to both? Or are you trying to change what it queries to another category (and in that case why?)
In forum: Ascend ThemeIn reply to: Highlight parent categoru in menu
November 27, 2018 at 12:04 pm #209172Hey,
Correct for your custom pages you would have to manually set the css based on the page id in the body tag.It’s possible through a child theme and code to filter queries in wordpress: https://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts
Ben
In forum: Virtue ThemeIn reply to: Smooth scrolling and Firefox offset
In forum: Virtue ThemeHello,
My website is almost done but there is a thing I’ld like to change on my homepage but just can’t see where to do so !!
I’m confused but I’ve been everywhere and I know I have once make some change and now impossible to find where.
In my homepage : *Login to see link I’ld like to change the bottom part from a 4 grid post display to a carousel of post .
Can you tell me where how to do so ?
I’m really sorry to ask you a so stupid question but I struggle with this one !!!
Thanks
GerardIn forum: Virtue ThemeHi – I have a mostly 1 page site and on Chrome and Edge the smooth scrolling hits the targets – but on Firefox it’s about 25px higher on the screen – so hidden partially by the sticky header.
Also, if I refresh the page on Firefox the sticky header disappears until I scroll back up – that’s not a big deal really, just thought it might be relevant.
http://176.32.230.45/ref-janishaves.co.uk/
Thanks for lookingIn forum: Ascend ThemeTopic: product shortcode in a page
November 27, 2018 at 8:44 am #209152Hi, i create as simple example for tests purpose *Login to see link … just to check if i am doing the right thing: i create a row, with 3 colums of 33% witdh and i put a siteorigin editor widget with this shortcode: [product id=”2391″]
as you can see the product is not displayed as i wanted: all the column witdh … so, am i doing anything wrong?
PD: if necessary you already have the key to enter the site and check it…
thank you very much
AngeloIn forum: Virtue ThemeIn forum: Ascend ThemeIn reply to: Category Query
In forum: Ascend ThemeTopic: Category Query
Hi,
i am trying to make a category template for a specific category that loops another category. Sounds crazy, i try to explain:
1. I made a category-category1.php file (in the child theme) based on the archive.php (from parent theme) and try to insert a query like this:
` <?php $args = array(‘category_name’ => ‘category2’); ?>
<?php $qry = new WP_Query($args); ?>while ($qry->have_posts()) : qry->the_post();
`I think i’m not passing the query in the loop like it should and so i get a white page. Can you help?
2. Reading the forums, i understand that it is not a great idea to use custom templates.
– is it possible to get the same results through functions.php?
or
– is it possible to strip the custom template down to a minimum to ensure more compatibility with future updates?Thank you
In forum: Virtue ThemeTopic: Snippet in functions.php
November 27, 2018 at 6:52 am #209139” I am trying to show my own custom element (countdown timer or counter bar) on grid page using this code. But it seems you have modified the native WooCommerce templates. Can you modify below code such that I am able to get my custom element working.
/**
* Call Countdown Timer in product loop below product name using shortcode.
* This inherit product’s timer settings and follow campaign rules.
*/
add_action(‘woocommerce_after_shop_loop_item’, ‘wcct_shop_loop_timer_display’, 5);
if (!function_exists(‘wcct_shop_loop_timer_display’)) {
function wcct_shop_loop_timer_display() {
echo do_shortcode(‘[finale_countdown_timer skip_rules=”no”]’);
}
}/**
* Call Counter Bar in product loop below product name using shortcode.
* This inherit product’s bar settings and follow campaign rules.
*/
add_action(‘woocommerce_after_shop_loop_item’, ‘wcct_shop_loop_bar_display’, 5);
if (!function_exists(‘wcct_shop_loop_bar_display’)) {
function wcct_shop_loop_bar_display() {
echo do_shortcode(‘[finale_counter_bar skip_rules=”no”]’);
}
}Thanks for your help.”
PS: I am marking my plugin developer (XLPlugins) in loop so you can joint work it out.
In forum: Virtue ThemeSorry, but the page you were trying to view does not exist.
It looks like this was the result of either:
a mistyped address
an out-of-date linkThis happens to some of pages on my site.
When this happens the preview and publish is grayed out on draft’sIf i update some text, that will not be updated on my site.
The odd thing is that it’s not on all pages.Thanks for answers
BrunoIn forum: Virtue ThemeIn reply to: Price display in similar items section
-
AuthorSearch Results


