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 '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 13,901 through 13,920 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    Topic: Saving page

    #213231

    Hi I’ve just installed virtue theme and imported demo.

    When I’m trying to edit and save a page its keeping Saving

    Portfolio page keep showing saving and its not getting saved

    other pages also keep showing saving , but its saving. Please help on this

    #213229

    Hello,

    the first thing I recommend is clearing your site’s cache to make sure the page has been properly loaded.

    Let me know if that makes a difference.

    -Kevin

    In forum: Pinnacle Theme
    #213227

    Hi!

    I have set a page header default background, so that can’t be the problem.

    On all my pages I always set the the page title background behind header. If that is set as a default for all pages then it should be good for the arhive and category pages. Is there a way to set this as a default?

    #213225

    Sorry, not sure why I thought you were referring to bottom padding. So the only way I know to do this is to remove the padding from the whole page, then you can re-add some padding into your text areas. So try out this css:

    @media (min-width: 992px) {
    .the-book .page div#ktmain {
        padding: 0;
    }
    .the-book .panel-grid-cell .widget-title, .the-book .siteorigin-widget-tinymce.textwidget {
        margin-top: 0;
        padding: 0 20px;
    }
    }

    Let me know how that works for you!

    Hannah

    In forum: Pinnacle Theme
    #213223

    Hey,
    It looks like you have not set a default page header background, so the menu is just blending in with the transparent header. You can set this from Theme Options > Page Title.
    Hope that helps!

    Hannah

    In forum: Ascend Theme

    In reply to: Menu styling

    #213218

    Hey,
    1. Try using this css instead:

    .nav-main .menu-item-75 a {
        padding-left: 0;
    }

    2. There isn’t a built-in function to style this different. When there are multiple sub menu items of sub menu items it looks more natural. See here (hover over Shop): http://themes.kadencethemes.com/ascend-premium-3/ Is there a certain style you’re wanting?

    3. From my understanding breadcrumbs will only use the font color settings in Theme Options > Breadcrumbs if you are not using a page header. Otherwise, they will default to white.

    Hannah

    In forum: Ascend Theme

    In reply to: Unable to save posts

    #213209

    Hey guys,
    Upon saving the posts/pages are you able to preview the page and see your changes, even though it is still “saving”? Or are your changes not taking effect? What version of the theme are you guys using?

    Hannah

    #213206
    This reply has been marked as private.
    #213195

    After importing the style 3 domo content to my site with Kadence Importer, when I tried to edit the content and images on my page, I did not see the source code, to edit to enable me to replace the demo content and images with my own content and images

    #213192

    Hi

    I recently updated to Ascend Premium which is great! I’m updating our site – – to take advantage of some of the premium features and I have a problem with the Ascend Post Grid and Recent Posts widgets.

    When I add them to a sidebar on a draft test page on the live site, the preview results in a server timeout. No other widgets do this, nor does the built-in WordPress Recent Posts widget (which outputs links to the latest posts, without thumbnails of the featured images). The blog_posts shortcode works fine on the test page. The site is running WordPress 5.0.3, with the classic editor as I’ve not yet moved to Gutenberg. Ascend theme is the latest, 1.7.0.

    I have tried purging caches and re-saving permalinks but it makes no difference. However, the widgets work on my staging site, which is running on WordPress 5.0.2 so I suspect a possible conflict with these widgets which use blog post featured images and the latest 5.0.3 version of WordPress.

    Any help to diagnose and resolve the issue would be appreciated!

    Thanks for a superb theme.

    Julian

    #213191

    Hi,

    Since the last few days some sections of the homepage of my website ( are not being displayed in some browsers (Safari, Chrome,…) regardless of the operating system (iOS, Windows, Android, macOS). See these images:
    and
    and

    Please help me to fix this issue.
    Thanks.

    #213190

    Also the selection Template For Page Builders is an option within this plugin’s post builder – maybe I can edit that directly to get rid of both Footer and Header?

    In forum: Ascend Theme
    #213175

    Hi Ben,

    i filter the shop page to hide a whole category because it’s displayed separatelly on the site:

    // Hide Category from Shop page
    add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );
    function get_subcategory_terms( $terms, $taxonomies, $args ) {
    $new_terms = array();
    // if a product category and on the shop page
    // to hide from shop page, replace is_page('YOUR_PAGE_SLUG') with is_shop()
    if ( in_array( 'product_cat', $taxonomies ) && ! is_admin() && is_shop ) {
    foreach ( $terms as $key => $term ) {
    if ( ! in_array( $term->slug, array( 'praktische-kurse, practical-courses' ) ) ) {
    $new_terms[] = $term;
    }
    }
    $terms = $new_terms;
    }
    return $terms;

    }

    /** * Exclude products from a particular category on the shop page

    */

    function custom_pre_get_posts_query( $q ) {
    if ( ! is_admin() && is_shop()){
    $tax_query = (array) $q->get( 'tax_query' );
    $tax_query[] = array(
    'taxonomy' => 'product_cat',
    'field' => 'slug',
    'terms' => array( 'praktische-kurse, practical-courses' ), // Don't display products in this category on the shop page.
    'operator' => 'NOT IN'
    );
    $q->set( 'tax_query', $tax_query );
    }
    }
    add_action( 'woocommerce_product_query', 'custom_pre_get_posts_query' );

    Works perfect in first language.
    After installing WPML and translating Taxonomies i added the english slug of the same category to the code, but with no effect.
    Can you please tell me what i’m missing?

    Thank you

    #213174

    Hi,

    I like these new tabs, but someone pointed out that in their old ipad safari it doesn’t work right. You can’t change between tabs, it just sends you to the bottom of the screen. None of the 3 options work.

    While I understand that keeping backwards compatibility is probably impossible, I wanted to ask if there is some kind of workaround so users with those older browsers can be shown something readable.

    the page I am working on is here

    Thanks.

    In forum: Pinnacle Theme
    #213173

    Hi!

    The colors of the menu header in category and archive pages is different from all of my other pages…

    Like this: white header and white text.
    https://kloekkefotografie.nl/category/behind-the-scenes/

    #213159

    Thanks Hannah, but this didn’t work.
    I’m talking about the margins left and right, and your css says something about the bottom margin

    I attempted to tweak it myself, based on the previous post (see link in my first message here above)

    .panel-widget-style.panel-row-style.panel-row-style-for-5-1 {
    padding: 0;
    }

    but I still see white margins left and right
    I added this to advanced css in the theme options, in the row panel of the page, and also tried in the widget panel on the row on the page, to no avail…

    I wonder if this would interfere with other css I have in the advanced css options:


    @media
    (min-width: 1200px) {
    .page div#ktmain {
    padding-right: 120px;
    padding-left: 120px;
    }
    }

    any ideas?

    #213154

    I think this is an issue related to a specific plugin that creates its own pages and is integrated with Elementor – I can change the elementor landing page settings on a regular WP page to No Header – but when using Elementor within this plugin to create specific plugin pages the No Header setting is not available.

    Maybe there is a way to create a custom code to eliminate Header (at least + possibly Footer) on specific URLs of the site?

    I found this code online –

    https://internetslayers.com/J-query.png

    and put right into the Page WordPress Editor and it worked, but the footer is still there, and Im not sure I can even use this code right in the Page, will it cause issues?

    #213147

    I am trying to create a clean landing page using my own HTML in the editor and I am using Elementor, but when I view it live, I am getting the site elements like header and footer, and menus showing at the top, it’s all broken up, while my actual HTML page is showing fine below all that, so I want to get rid of all of Virtue stuff and just have a clean landing page.

    I did set NO sidebar in the page edit fields, and I selected Template for Page Builders

    FYI – I have Kadence Elementor and Regular Elementor installed since when I installed KAdence version, I got a message that I needed to install Elementor as well (but even with just one or the other the result is the same)

    #213141

    Hey Luke,
    You can set this from Theme Options > Shop Settings > How many products per page.
    Hope that helps!

    Hannah

    #213139

    Hey Leila,
    The css for that would look different page to page because there isn’t a set css class to select. On that particular page this css should work for you:

    .panel-widget-style.panel-row-style.panel-row-style-for-5-1 {
        margin-bottom: -35px;
    }

    Hannah

Viewing 20 results - 13,901 through 13,920 (of 53,646 total)