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 - 8,781 through 8,800 (of 53,646 total)
  • Author
    Search Results
  • #246072

    Hi Kadence team,

    We are having issues with one of our online shops.
    We would like to enter prices EXCLUDING TAX and display it INCLUDING TAX.
    When using VIRTUE If we enter EXCLUDING TAX then the prices are displayed EXCLUDING TAX at SHOP page and ITEM PAGE.
    How could we change this without having to enter prices INCLUDING TAX, please?

    Thanks

    #246063

    I’ve assigned each of the only two pages an image. Landing page and normal page.

    this has worked on two other sites, so I can’t undrstand why it’s not working here?

    In forum: Virtue Theme

    In reply to: (Mobile) Main menu

    #246060

    Hi Hannah

    2. No problem, our adjustments work for us.

    3. Ok, in this case our workaround is the better option.

    4.+5. I tested this by using DevTools for different kind of displays in Firefox and Chrome. Further on I see the discribed overlay on my smartphone.
    Your screenshot is taken from the main page. Opening the menu from the main page you will not recognize the described overlaying because we haven´t chosen a background image for the main page.
    So please click on one link in the opening menu, for example “Besetzung”. After the site has loaded you will see that the header has a grey background. And if you now open the menu again you should see what I have described. For example, if you turn on/off the background-image via DevTools for

    background: url(https://www.musikverein-waldfeucht.de/wp-content/uploads/theme/header-background.jpg) repeat-x;

    in the .mobile-headerclasse you should see the described effect for opening the menu (not from the main page).

    • This reply was modified 6 years, 1 month ago by MCW1891.
    #246053
    Redux::setSection(
    	'virtue_premium',
    	array(
    		'id'         => 'custom',
    		'priority'   => 1,
    		'icon'       => 'icon-page-break',
    		'icon_class' => 'icon-large',
    		'title'      => __( 'New Custom', 'virtue' ),
    		'desc'       => '<div class="redux-info-field"><h3>' . __( 'New Custom', 'virtue' ) . '</h3></div>',
    		'fields'     => array(),
    	)
    );
    $staff = array(
    	'section_id' => 'custom',
    	'id'         => 'kadence_staff_extension',
    	'type'       => 'switch',
    	'title'      => __( 'Staff Posts', 'virtue' ),
    	'subtitle'   => __( 'Turn off/on staff references and code.', 'virtue' ),
    	'default'    => 0,
    );
    
    $staff_territory = array(
    	'section_id' => 'custom',
    	'id'         => 'wpto_staff_territory',
    	'type'       => 'switch',
    	'title'      => __( 'Territory/Specialty', 'virtue' ),
    	'subtitle'   => __( 'Turn off to remove the territory/specialty field from staff listings.', 'virtue' ),
    	'default'    => 1,
    	'required'   => array( 'kadence_staff_extension', '=', '1' ),
    );
    Redux::removefield( 'virtue_premium', 'kadence_staff_extension' );
    Redux::setField( 'virtue_premium', $staff );
    Redux::setField( 'virtue_premium', $staff_territory );
    $import = Redux::getSection( 'virtue_premium', 'import_export' );
    $import['priority'] = 99;
    Redux::setSection( 'virtue_premium', $import );

    There you go.

    Ben

    In forum: Ascend Theme

    Topic: blog images

    #246048

    Hi, I have set a featured image in my blog and it shows on the blog page but not on the post itself. Could you help me?

    Thanks..

    #246044

    It’s under the layout tab in your pagebuilder settings.

    You can turn off “Use Tablet Layout”

    Or change the mobile layout width settings to include the size of XR in horizontal.

    Ben

    #246033

    Hey,
    In your settings > pagebuilder you should increase when the columns collapse. Or turn off tablet mode. That is why you have 2 columns when there are three set for desktop and one for mobile.

    The admin bar is not going to look good since it’s not shown on your site for users I suggest you ignore it. Or set your site public and logout and view the site.

    Ben

    #246030

    Hello
    I am trying to increase the speed of the home page desktop version. I insert the Youtube link in Kadence Slider Pro.
    I tried to do it with a short code, to test if it has a better speed but I doesn´t work the option outplay and hide the controls.
    Do you have any idea how to increase the loading?
    Thank you
    Regards,
    Cecilia

    #246028

    the content text began with MAURIZIO etc….
    Before that texte, there is a empty space, If I could began that text upper in that page only and on mobil only that would be great. .best marc

    In forum: Ascend Theme

    In reply to: Blog Post Formats

    #246022

    Hey,
    no to archive-recipes.php file. that would only work if you created a new post type called recipes. Which may be something you want to do so that in the admin you see the posts separately.

    Your main recipe page can have a different archive style since that would be a page, but subcategories will use the default category setting when outputting the posts. Meaning Recipe -> Lunch. Will have the same post output style and sidebar as blog -> Nutrition.

    You can manually set sidebars inside each recipe to be different from the default but you can’t set a default based on the category you put the post into. Meaning your recipe posts can have a recipe sidebar you just have to set that in the post settings for each recipe post.

    I hope that clarifies.

    #246020

    Interesting in that context priority isn’t working.

    This will move to the end:

    
    $staff = array(
    		'section_id' => 'theme_extensions',
    		'id'         => 'kadence_staff_extension',
    		'type'       => 'switch',
    		'title'      => __( 'Staff Posts', 'virtue' ),
    		'subtitle'   => __( 'Turn off/on staff references and code.', 'virtue' ),
    		'default'    => 0,
    	);
    
    $staff_territory = array(
    		'section_id' => 'theme_extensions',
    		'id'         => 'wpto_staff_territory',
    		'type'       => 'switch',
    		'title'      => __( 'Territory/Specialty', 'virtue' ),
    		'subtitle'   => __( 'Turn off to remove the territory/specialty field from staff listings.', 'virtue' ),
    		'default'    => 1,
    		'required'   => array( 'kadence_staff_extension', '=', '1' ),
    	);
    Redux::removefield( 'virtue_premium', 'kadence_staff_extension' );
    Redux::setField( 'virtue_premium', $staff );
    Redux::setField( 'virtue_premium', $staff_territory );

    A new section would look like this:

    Redux::setSection(
    	'virtue_premium',
    	array(
    		'id'         => 'custom',
    		'icon'       => 'icon-page-break',
    		'icon_class' => 'icon-large',
    		'title'      => __( 'New Custom', 'virtue' ),
    		'desc'       => '<div class="redux-info-field"><h3>' . __( 'New Custom', 'virtue' ) . '</h3></div>',
    		'fields'     => array(),
    	)
    );
    $staff = array(
    	'section_id' => 'custom',
    	'id'         => 'kadence_staff_extension',
    	'type'       => 'switch',
    	'title'      => __( 'Staff Posts', 'virtue' ),
    	'subtitle'   => __( 'Turn off/on staff references and code.', 'virtue' ),
    	'default'    => 0,
    );
    
    $staff_territory = array(
    	'section_id' => 'custom',
    	'id'         => 'wpto_staff_territory',
    	'type'       => 'switch',
    	'title'      => __( 'Territory/Specialty', 'virtue' ),
    	'subtitle'   => __( 'Turn off to remove the territory/specialty field from staff listings.', 'virtue' ),
    	'default'    => 1,
    	'required'   => array( 'kadence_staff_extension', '=', '1' ),
    );
    Redux::removefield( 'virtue_premium', 'kadence_staff_extension' );
    Redux::setField( 'virtue_premium', $staff );
    Redux::setField( 'virtue_premium', $staff_territory );

    Ben

    #246017

    I think this might be what you are after, here is some css you can try:

    .page-id-5464 .wp-block-image img {
        max-height: 75vh;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Custom 404 Page

    #246016

    I’m seeing the custom 404 page working with your slider. What browser are you using?

    Hannah

    In forum: Virtue Theme
    #246009

    Hey,

    My Custom 404 Page settings seems to have changed:

    An incorrect URL typed into the address bar used to redirect to http://www.domain.com/”ChosenCustom404Permanlink&#8221; – whereas now it directs to http://www.domain.com/”TheWronglyTypedInURL”.

    Also, I had it set to bring up a Rev Slider as the 404 page – which it still does – but before it loads the slider it loads a blank page with the standard “Recent Comments, Archives, Categories, Meta” stuff on it.

    I haven’t changed any of my settings. Any ideas?

    Many thanks.

    In forum: Pinnacle Theme

    In reply to: Post Pagination

    #246007

    I’m inserting <!--nextpage--> manually into the post

    #246005

    OH…That is why I was suggesting it be mage to link back to last page.
    So if the came from client 2 or client 12 they go back to the correct shop.

    OR just delete it completely?

    Thanks
    Frank

    #246004

    Well… For the photographers images for sale it is:
    https://spotashotphotography.com/sas-imagery-for-sale/

    But then for each client we are creating a separate “store” page.
    Example:
    https://spotashotphotography.com/client-stores/client-2-store/

    This way things are separated. We do not want them to see:
    https://spotashotphotography.com/shop/
    Where all the categories…”Stores” are visible.

    #245996

    Hi Hannah,

    I’ve use noticed that on an iPhone the subcategory page is still forcing 6 columns which obviously can’t fit or display correctly, even though the css is @media (min-width: 992px), how can we fix this?

    The category page is fine and the product pages are fine, its just on pages with subcategories that its displaying incorrectly.

    #245993

    hi alls
    My home page is a page type like LANDING PAGE.
    Css suppress menu and footer.
    there is a block Hero frame of site origin containing texte and 3 button ( for choice languages )

    on mobile I see only the bakground image.. coming from the plug in Fullwidth backgrond

    have you a idea to solve that?
    so many thanks . best marc

    In forum: Ascend Theme

    In reply to: Blog Post Formats

    #245989

    1. These pages will generate automatically.

    2. Any content that is added to the page will automatically display above the posts when using the blog template. But another option is to display your posts via shortcode like this: [blog_posts orderby=date items=4 word_count=30 cat=photos] You can find a full list of shortcodes here: http://docs.kadencethemes.com/ascend-premium/shortcodes/

    Hannah

Viewing 20 results - 8,781 through 8,800 (of 53,646 total)