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: Copying Kadence Themes pull down menu design
Hey Kevin,
I have the fonts. I am looking for the rollover colors and the grey background with white text on the pulldown. For example, when you mouse over About Us on this page (above this post). I couldn’t do it modifying the colors in the Theme Menu Settings page.
Our site is here:
Thanks!
In forum: Ascend ThemeHello,
I have inserted this code into a Child Theme’s functions.php to hide the Description and Additional Information tabs in Woocommerce.
add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );
function woo_remove_product_tabs( $tabs ) {
unset( $tabs[‘description’] ); // Remove the description tab
unset( $tabs[‘additional_information’] ); // Remove the additional information tabreturn $tabs;
}When I only hide the Additional Info tab Elementor works fine. If I hide the Description tab as well I get an the following error –
“Sorry, the content area was not found in your page. You must call the_content function in the current template, in order for Elementor to work on this page.”
This error only happens on a product page. All other pages with Elementor work fine. I’ve disabled plugins and purged cache but that did not resolve the problem.
I don’t have a link as everything is local.
Any ideas?
In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 8, 2018 at 10:46 am #206900I just updated to this:
function custom_show_sidebar_meta_only_admin( $display, $meta_box ) { if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar' == $meta_box['id'] || 'post_sidebar_metabox' == $meta_box['id'] ) ) { return current_user_can( 'manage_options' ); } else { return $display; } } add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );Let me know if you still see it on a vendor.
Ben
In forum: Pinnacle ThemeIn reply to: Author Box ABOVE Comments on Pages
November 8, 2018 at 10:42 am #206898Update this:
function child_theme_init() { if ( function_exists( 'pinnacle_author_box' ) ) { add_action( 'kadence_page_footer', 'pinnacle_author_box', 10 ); } } add_action( 'init', 'child_theme_init');To this:
function child_theme_init() { if ( function_exists( 'pinnacle_author_box' ) ) { add_action( 'kadence_page_footer', 'pinnacle_author_box', 1 ); } } add_action( 'init', 'child_theme_init');Ben
In forum: Pinnacle ThemeIn forum: Pinnacle ThemeIn forum: Virtue ThemeIn reply to: Adding categories to Portfolio shortcode
In forum: Ascend ThemeIn reply to: Product Search Widget
Hi Kevin
It looks neater to use the product search than a button. but I’m at a loss as to what to do. I want to enable users to search for my products. If I can’t even search for my products, then how does it work? I don’t want users to search randomly either because I only have x number of products, so when they select, it should come up with those option and take them to the relevant page.
If these words are cached in my browser then users might have other words cached in their browsers and it would affect the widget?
In forum: Virtue ThemeHello guys,
I am trying to copy the layout of the Portfolio Grid template in a shortcode so I can add a widget below it. I’m getting everything except the sortable Types line on the upper right corner (which I like). Here is a link to the page. The first layout on the page is my shortcode and the second is the template default.
What do I need to add to my current shortcode?
[portfolio_types]
[portfolio_posts type=branding orderby=rand columns=3 items=20 ratio=”square” style=”mosaic”]In forum: Virtue ThemeTopic: Kadence slider and WPML
Hi,
I have now two sliders [kadence_slider_pro id=”1″] and [kadence_slider_pro id=”2″] at page *Login to see link The second one is english copy of “1”.
I put Theme Options Home slider Shortcode entry to [kadence_slider_pro id=”1″] and put [kadence_slider_pro id=”2″] to WPML string translations
but slider doesn´t change at *Login to see link !What am I doing wrong?
Yours,
MillaIn forum: Virtue ThemeHi Ben & Hannah,
I’m attempting to center the table with the mobile app badges on the footer of this site: *Login to see link
I’ve used the following css:
.textwidget.custom-html-widget a {
padding:5px;
border:none;
}
.textwidget.custom-html-widget a:hover {
background: rgba(45,92,136,0.3);
border-radius: 10px;
}
/* Footer Widget Styling 2018-11-07 2136*/
.col-md-12.footercol1 {
float: none;
margin-left: auto;
margin-right: auto;
align-items: center;
align-content: center;
text-align: center;
}
#custom_html-6 > div {
border:none;
display: flex;
align-items: center;
text-align: center;
margin-left: auto;
margin-right: auto;}
.footercredits {
text-align: center;
align-items: center;
}
.footercredits p:nth-child(1) {
width: 100%;
}
footer#containerfooter {
text-align: center;
}
.virtue_social_widget.clearfix {
display: flex;
align-items: center;
justify-content: center;
}
.footermenu {
float: none !important;
margin-right: auto !important;
margin-left: auto !important;
}
.footercredits.clearfix {
display: inline-flex;
flex-direction: column;
width: 100%;
}
.footernav.clearfix {
display: flex;
}And I’m finding that if I save the CSS, the CSS appears, then if I save the footer layout, the CSS disappears. If I go back and save the CSS, the footer layout reverts. I’m trying to get the footer into the first full-width column of the last layout such that I can make it absolute center on the page since the other layouts seem to align the content left regardless of which footer widget the content resides in.
Any ideas as to how to resolve this?
In forum: Ascend ThemeIn reply to: Cannot make changes to existing Post
This reply has been marked as private.November 7, 2018 at 9:22 pm #206826In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 7, 2018 at 7:20 pm #206823see all replys of topic
ok i am giving all info
1st i share problem see 1st screenshot – https://i.postimg.cc/Fs6r9jR6/Screenshot-1.pngthen you provide this code to add child theme’s functions.php
function custom_show_sidebar_meta_only_admin( $display, $meta_box ) { if ( isset( $meta_box['id'] ) && ( 'product_post_side_metabox' == $meta_box['id'] || 'default_page_sidebar' == $meta_box['id'] ) ) { return current_user_can( 'manage_options' ); } else { return true; } } add_filter( 'cmb2_show_on', 'custom_show_sidebar_meta_only_admin', 10, 2 );but after add this code problem not solve then you did it manually.
screenshot 2 – https://i.postimg.cc/4NpGTjDY/Screenshot-2.pngIn forum: Virtue ThemeIn reply to: Remove upsell and cross-sell product prices
November 7, 2018 at 6:28 pm #206818You could use css, can you post a link? product pages do not show cross-sell products those are shown in the cart.
Ben
In forum: Ascend ThemeIn reply to: the_excerpt();
Thanks Ben. Following your advice, I’ve created an ACF custom field (‘acf_custom_field’) for the portfolio introduction. Everything is easier that way.
On the single portfolio page I use:
<?php the_field('acf_custom_field'); ?>On the portfolio grid page I use the following code to limit the length.
<?php $custom_excerpt = wp_trim_words( get_field('acf_custom_field' ), $num_words = 30, $more = '...' ); echo $custom_excerpt; ?>My Read More link is a plus icon button, displayed whatever the portfolio introduction is available or not.
<a class="pqna-read-more-link" href=" <?php esc_url( the_permalink() ) ?> "><i class="kt-icon-plus"></i></a>Regarding the use of ACF fields, there are not searchable by default. I found different solutions on this thread https://support.advancedcustomfields.com/forums/topic/making-acf-data-available-to-wp_search/
I’m really happy now. Thanks Hannah and Ben for your support.
Hugo
In forum: Virtue ThemeIn reply to: Kadence Page Transitions Activation
November 7, 2018 at 6:26 pm #206816The amp plugin is not for pages, it will make your posts and products amp. for example: https://www.deals2save.com/product/all-new-fire-hd-8-tablet-hands-free-with-alexa-8-hd-display-16-gb-black-with-special-offers/amp/
Ben
In forum: Membership ForumsIn reply to: Hide sidebar options for selected user role
November 7, 2018 at 6:15 pm #206812I was give topic link in previous reply.
this is link – Previous Topic
In forum: Virtue ThemeIn forum: Virtue ThemeIn reply to: Kadence Page Transitions Activation
in my settings section it installed a section called
Kadence Page Transitions Activation
Plugin activation.API License ActivationAPI License Deactivation
API License ActivationActivating your license allows for updates to Kadence Page Transitions. If you need your api key you will find it by logging in here: kadencethemes.com/my-account/
API License Key
API License emailIn forum: Virtue ThemeIn reply to: Kadence Page Transitions Activation
Just ran the Google Amp Checker
https://search.google.com/test/amp
with my domain below
https://www.deals2save.com/amp
Tested on: Nov 7, 2018 at 6:38 PM
Not an AMP page
The URL is not an AMP page, nor does it link to an AMP page. -
AuthorSearch Results


