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 - 6,661 through 6,680 (of 53,646 total)
  • Author
    Search Results
  • #256629

    Dear sirs, Thanks again for your great products, but I have one small thing which I need to fix.
    Bread Crumbs are under H1 on pages on Desktop screens. (but ok in Posts). You can see it by this link or see Screeshot

    Please help me to resolve this problem (Maybe ad mo space between)
    Thanks

    In forum: Ascend Theme
    #256625

    Hi Ben,

    your screenshot is what I see too, but that dropdown on the right isn’t a category widget, it’s the attribute widget showing the 3 attributes for the 3 test products.

    The main problem remains that the whole widget disappears on product category pages.

    You can see this in action by browsing the 3 categories in the menu: “Kataloge”, “Plakate”, “Künstlereditionen”.

    So the filter counts the 3 products on the shop page but not on the other category pages.

    Thanks

    #256619
    This reply has been marked as private.
    #256618

    We are setting up a multi-lingual website on our development site at with a Virtue Premium theme using qTranslate, and all the English language content is translating correctly throughout the site (including for all plugin-generated content) in all languages, except in the cases of the Chinese (zh) and Korean (kr) languages, there are no translations appearing for the “Name”, “Email” and “Message” field headings on the contact page (which uses the Virtue Premium theme template).

    It would be appreciated if you could advise how we might be able to remedy this.

    Thank you.

    #256615
    This reply has been marked as private.
    #256612

    There’s a massive amount of space between my sidebar and the post and I can’t seem to find a setting to decrease that. No matter what % I set the sidebar at the post/page size adjusts and the big space remains.

    #256610

    Is possible to change the background and font colors in a post by post basis?
    I need to allow the creation of posts where the user could set a new palette in that article or post. Is this possible?

    Thanks!

    In forum: Ascend Theme
    #256597

    Would you be able to send me a screen shot of what you are seeing on your shop page? I only see the category dropdown.

    Ben

    Screen-Shot-2020-09-09-at-3-23-50-PM

    In forum: Pinnacle Theme

    In reply to: Homepage loading

    #256595

    Hi Anita,
    Sorry for the delay! I don’t think I’m experiencing this when navigating away and back to your homepage. What exactly are you experiencing? Sorry if I’m misunderstanding.

    Hannah

    #256584

    Hi Kim,
    You can do this from your post archive edit page. You can create your post archive page by selecting the Blog page template. See here: http://docs.kadencethemes.com/ascend-premium/templates/blog-page-template/ Then to add a page title scroll down to Page Title and Subtitle and there you can set a page title background image. Just make sure Hide Page Title Area is set to Show. Does this work for you?

    Hannah

    In forum: Ascend Theme

    In reply to: Row Question

    #256583

    Hello,

    May I have a link to your page so I can see how you have the template built in the theme options?

    Thanks!

    #256582

    Ascend Theme – I would like to have a page header on the page that is displaying the latest blog posts. How can I do this?

    In forum: Ascend Theme

    Topic: Row Question

    #256578

    Hope all is well. , the row above the footer showing “Membership has it’s benefits” currently displays on all pages. How can I edit this, so that it only shows on the home page?

    #256562

    Thanks Ben.

    I’m reluctant to use the word ‘Master’ but I’m fairly proficient at tinkering. This is my first time digging into Gutenberg blocks though so please excuse my ignorance.

    What I have done is to add this to the child theme’s functions.php file:

    function kblocksextend_enqueue() {
        wp_enqueue_script(
            'kblocksextend-script',
            plugins_url( 'kblocksextend.js', __FILE__ ),
            array( 'wp-blocks', 'wp-dom-ready', 'wp-edit-post' ),
            filemtime( plugin_dir_path( __FILE__ ) . 'kblocksextend.js' )
        );
    }
    add_action( 'enqueue_block_editor_assets', 'kblocksextend_enqueue' );

    And then created the kblocksextend.js file in the same directory as functions.php.

    The kblocksextend.js file is as follows:

    function example_add_to_prebuilt( options ) {
    	const blockOptions = [
               {
    		key: 'forum_blocks',
    		name: 'Forum Blocks',
    		keywords: [  'forum', 'business' ],
    		pro: false,
    		pages: 1,
    		by: 'LV',
    		byLink: 'https://mysite.com/',
    		category: [ 'agency', 'business' ],
    		image: 'URL TO IMAGE HERE',
    		templates: [
    			{
    				key: 'forum_hero_section',
    				pro: false,
    				content: '{"__file"...JSON-block-export-content-here"}',
    				name: 'Forum Hero Section',
    				image: 'https://imagesource.png',
    			}
                      ],
                 },
    	];
    	const newOptions = options.concat( blockOptions );
    	return newOptions;
    }
    wp.hooks.addFilter( 'kadence.prebuilt_templates_array', 'example/prebuilt', example_add_to_prebuilt );

    Any chance you could point me in the right direction from here or let me know what I have misunderstood?

    Also, where do I add this bit?

    That needs to be enqueued on the https://developer.wordpress.org/reference/hooks/enqueue_block_assets/ action

    Thanks for your time and apologies for the noob levels happening! 🙂

    If I can figure this out I will create a video tutorial for it and upload it to my YouTube channel 😀

    • This reply was modified 5 years, 7 months ago by Shane Rielly.
    • This reply was modified 5 years, 7 months ago by Shane Rielly. Reason: Spelling error
    • This reply was modified 5 years, 7 months ago by Shane Rielly.
    #256543

    Hey,
    So yeah you are correct, there is no archive file, instead it pulls from the index, see the hierarchy here: https://developer.wordpress.org/files/2014/10/Screenshot-2019-01-23-00.20.04.png

    Just to note, the theme does have a template-parts/content/archive.php file which is hooked in on the kadence_archive action. This makes it work really well with pagebuilders because they can hook in their content.

    Ben

    #256541

    Hey,
    Just want to make sure I am clear for everyone, this is not a basic thing where you simply copy and paste. You should only do this if you consider yourself a developer or a master tinkerer. In the future, I will be building an interface for this for the average user. For now you would need to use something like page builder cloud to have an interface.

    Do I need to create a .js file

    Yes, you need to create a custom js file that would be in your child theme or a custom plugin. That needs to be enqueued on the https://developer.wordpress.org/reference/hooks/enqueue_block_assets/ action.

    I hope that helps!

    Ben

    #256540

    Hey,
    with the pro version of the theme (beta is accessible from the my-account page, it’s stable) you can use an element which you can either hook in or use the shortcode to add your page.

    https://kadence-theme.com/docs/how-to-use-element-hooks/

    Ben

    #256533

    Oh sorry, this will make it apply only on the shop archive page:

    .archive .wgm-info.woocommerce_de_versandkosten {
        display: none;
    }

    Hannah

    #256529

    Thanks so much Hannah. Love the re-usable blocks option. It is very helpful. For this use I need to kind of inject the block or page into an existing theme or page via shortcake or PHP. Is that doable somehow?

    Griffin

    #256514

    Thanks, but this affects not only the shop-page. Also effects the single-product-page. Any other idea? Can I do it with php?
    Best
    Michael

Viewing 20 results - 6,661 through 6,680 (of 53,646 total)