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 - 14,501 through 14,520 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Split screen css help

    #209300

    Hi Milla,
    This css should work for you:

    .page-id-177 .wrap.clearfix.contentclass.hfeed {
        padding: 0;
    }

    You can paste that into your custom css box in Theme Options > Advanced Settings.
    Hope that helps!

    Hannah

    In forum: Pinnacle Theme

    In reply to: still sides background

    #209288
    This reply has been marked as private.
    In forum: Ascend Theme

    In reply to: Category Query

    #209287

    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 Theme
    #209273

    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.

    #209272

    I’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.

    #209265

    Page:

    Screenshot:

    I 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!

    #209197

    Hi,

    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,
    Scarlett

    #209184

    This css should work for your homepage:

    .stickyheader #kad-banner {
        border-bottom: 1px solid red;
    }

    Hannah

    In forum: Ascend Theme

    In reply to: Category Query

    #209174

    Don’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?)

    #209172

    Hey,
    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

    #209160

    Hey,

    I’m actually seeing the smooth scroll go to the right spot on the page in firefox. are you using the latest version of the browser?

    -Kevin

    #209159

    Hello,

    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 : 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
    Gerard

    #209158

    Hi – 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 looking

    #209152

    Hi, i create as simple example for tests purpose … 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
    Angelo

    #209146

    Hello Bruno,

    The first thing that I would try is going to Settings> Permalinks and resaving them. This may bring the pages back to your site.

    If that doesn’t work, can you please link to these pages and posts?

    -Kevin

    In forum: Ascend Theme

    In reply to: Category Query

    #209145
    This reply has been marked as private.
    In forum: Ascend Theme
    #209144

    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

    #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.

    #209136

    Sorry, 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 link

    This happens to some of pages on my site.
    When this happens the preview and publish is grayed out on draft’s

    If 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
    Bruno

    #209135
    This reply has been marked as private.
Viewing 20 results - 14,501 through 14,520 (of 53,646 total)