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,481 through 6,500 (of 53,646 total)
  • Author
    Search Results
  • #257411

    Hi ben,

    Hope u are doing well.

    i just wondering how to place the position of Primary menu on the front page become straight line with the logo? the position now is quite on right top.

    additionally, i would like to place my Instagram photo on page below the icon menu. is there any widget could do that? please guide me thanks

    Looking forward to hearing from you soon thanks

    my url is : ine/

    • This topic was modified 5 years, 7 months ago by Susiyana.
    #257404

    Hi Ben,

    Love the re-usable blocks with Kadence power behind them. Normally if I try to edit as block on the page in edit mode, I get this error:

    Block has been deleted or is unusable

    OR this one:

    This block has encountered an error and can't be previewed.

    Of course both of these prevent me from being able to do some inline edits to the global block design. What I have to do to edit the block then becomes tedious. Currently I have to click the “+” icon to add a new block and then click “Browse all” and then click “Reusable” and then click “Manage all reusable blocks” and finally click into to the desired saved block. From their I can easily edit as expected with no issues so far.

    Not sure how to avoid/fix the errors above, but I have a pretty complex page and block design, so not super worried about it.

    That being said, I am wondering if a Menu could be added for Reusable blocks so I can access that a bit easier from the admin area.

    I see the URL is ../wp-admin/edit.php?post_type=wp_block but I do not see a menu item anywhere for it. Could one be added under the Kadence Block Menu maybe? Kadence Blocks > Reusable Blocks for example?

    #257396

    Hello Andrew,

    Thanks for reaching out to us.

    Just to confirm, after installation of the Ryviu – Product Reviews for WooCommerce, did you connect it to your Ryviu account? It is possible that your website’s connection to the review app is not yet established or an error occurs on their connection.

    I’ve tried installing the plugin and creating an account on Ryviu. When I click the connect to account, I have selected WordPress and input my website’s URL and was given these steps to follow on the Ryviu dashboard – https://share.getcloudapp.com/4gu9kWZB. Once the Ryviu Chrome Extension was installed, I can already see the review widget from Ryviu on my test site – https://share.getcloudapp.com/4gu9kWNl. Also, I was able to add a review successfully and it displays right away on the product page. Here’s a screen recording of it.

    Please double check if you were able to do the necessary steps and let us know if we can assist you further.

    Best Regards,
    Karla

    #257394

    You all are geniuses! I changed “Blog pages show at most” from 99 to 10, and now it displays all posts.

    Thank you so much. Marking resolved.

    #257391

    This is planned for Kadence Pro. Archive meta for page title background and layout settings including transparent header etc.

    Ben

    In forum: Virtue Theme

    In reply to: slider for posts

    #257390

    the link is changed. it is now https://regionalresourcecenter.org.

    Can you also help me center the posts please?
    So I have 2 issues:
    1. posting from just one category… I have the posts designated to categories; and designated that category in the posts query of SiteOrigin Post Carousel plug in. But no posts are displaying. (Bottom of the home page, under NEWS AND EVENTS)

    2. centering the posts within the carousel.

    Thank you very much,
    Carrie

    #257387

    Hey,
    You would need to use the code snippet plugin to run PHP. https://wordpress.org/plugins/code-snippets/

    I’ve been considering allowing something like this is elements for the future but it can’t be done in gutenberg so would either need to be a whole new element type. It also presents a security risk for site owners.

    your code is close just update to this:

    
    add_action( 'kadence-after-side-cart', 'cart_notice' );
    function cart_notice() {
    	$min_amount = 50; //change this to your free shipping threshold
    	$current = WC()->cart->subtotal;
    	if ( $current < $min_amount ) {
    		$added_text = '<div>Get free shipping if you order ' . wc_price( $min_amount - $current ) . ' more!</div>';
    		$return_to = wc_get_page_permalink( 'shop' );
    		$notice = sprintf( '%s<a href="%s" class="button wc-forward">%s</a>', $added_text, esc_url( $return_to ), 'Continue Shopping' );
    		echo $notice;
    	}
    }

    Thanks for the feature request.

    #257385

    Hello Daniel,

    Thank you for reaching back to us.

    Previously, you’ve stated that “Currently, in Reading Settings, I have set Blog pages show at most 99 posts.”, is this still the case? If yes, that would explain the behavior of the infinite scroll. The infinite scroll still uses this option, that is why it shows all of your posts in first load and no next page is being generated. Kindly reduce this to a number lower than 20, say 10.

    If the above step did not work, could you provide us with a temporary access to your website so we can take a closer look of the issue?

    Hope this helps and please let us know if we can assist you further.

    Best Regards,
    Karla

    #257384

    Hey Joie,
    1. From your WP Dashboard Navigate to WooCommerce > Settings > Shipping > Shipping Options and there you can un-toggle “Enable the shipping calculator on the cart page”

    2. In the same place, you can enable “Default to customer shipping address”.

    Hope that’s helpful!

    Best,
    Hannah

    #257382

    Hey,
    You wrote:
    “I have about 30 posts so far on the website.
    On the “Posts” page, only the last 20 display.”

    Would it be possible for you to send a login so I can see what is happening. The site front end all the available posts appear to be loading.

    Ben

    #257381

    Hello,

    I’m trying to change the placeholder image on the shop page for products that don’t have images. I’ve made the necessary adjustments to have a custom image placeholder on the individual product page, but I’m having trouble figuring out how to replace the image placeholder that’s visible when I look at the entire list of products.

    #257379

    Hi,
    I would like to add a free shipping amount notice after my side cart content by using a custom function. It seems that code block does not work for that purpose. Is there a way to add custom function to elements?

    If not then what is the correct hook for afters side cart content area? I used this function here below.

    As a feature request: it would be great to set this “Get free shipping if you order $$$ more” in the Customizer by just adding the amount 🙂

    Thanks,
    J.

    add_action( 'kadence_after_side_cart_content', 'cart_notice' );
    function cart_notice() {
    $min_amount = 50; //change this to your free shipping threshold
    $current = WC()->cart->subtotal;
    if ( $current < $min_amount ) {
    $added_text = 'Get free shipping if you order ' . wc_price( $min_amount - $current ) . ' more!';
    $return_to = wc_get_page_permalink( 'shop' );
    $notice = sprintf( '<a href="%s" class="button wc-forward">%s</a> %s', esc_url( $return_to ), 'Continue Shopping', $added_text );
    wc_print_notice( $notice, 'notice' );
    }

    #257378

    Hey Dave,

    We are working on Kadence Blocks dynamic data but it isn’t there yet. Something that might work in the mean time for displaying post/page title is https://wordpress.org/plugins/shortcode-to-display-post-and-user-data/. Breadcrumbs are more complex but most SEO plugins (like Yoast) have a shortcode you can use to output breadcrumbs as well. Hope this is helpful!

    #257372

    Hello,

    The previews may not be working due to a WordPress update, but on the front end, I’m seeing those all show in a single column and adhering to the resolution. Logging into the backend and adding a row with Kadence and then trying to scroll through all the blocks, once I get to the Qubely blocks in the list, if I hover over them, they tend to close out the blocks list after a couple of blocks hovered with a Javascript timeout error in the WP core:

    took 34ms
    block-editor.min.js?ver=ae7e31576f8d799f9ac7ed226568278c:12 [Violation] 'setTimeout' handler took 100ms

    Referring to this file:
    https://staging-seashoreweb.wordkeeper.net/wp-includes/js/dist/block-editor.min.js?ver=ae7e31576f8d799f9ac7ed226568278c

    I think there are multiple issues at play but none ring true REALLY to either Kadence or Quebly. I just happen to notice Quebly content seems to be causing an issue in the customizer itself. The test page you have me viewing has no Kadence Blocks on it so I don’t see Kadence/Kadence Blocks being an issue in the particular case. If it happens on other themes then to me it sounds like a core issue that I just can’t happen to replicate.

    Let me know if that helps at all or if there is anything else we can do for you.

    Thanks!

    #257371
    This reply has been marked as private.
    #257366

    Hi,

    I think this would work as I could create a reusable block for Web admin to use in these circumstances. Is there a way to insert page title and breadcrumbs into a Kadence Block?

    #257365

    Ahhh I see what you are saying. Yes you are correct but in that case I think it might make more sense to disable the header and use Kadence Blocks to create the header with page title since you are editing each page individually. The theme options are generally for applying changes across the entire site. Have you tried disabling the page title and using Kadence Blocks to create a custom header for the specialty pages?

    #257363

    Hi Clayton, from my understanding, those are theme-wide settings for all pages. In the theme design area there’s overlay option.

    However none of these items can be set for an individual page from what I can gather ?

    #257361

    I cant seem to find any of my reviews on a single product page.
    I’m also using ryviu plugin and have added many reviews to different products. In the ryviu plugin/app it shows all the reviews which are available.

    But in woocommerce product page no reviews show. There’s also no option to leave a review for the product. I don’t understand why?

    here’s an example page which according to ryviu app has 1500 reviews, but shows nothing? It’s as if something is stopping them from showing in the theme.

    In forum: Membership Forums

    In reply to: Kadence slider bug?

    #257346

    Hello,

    May I have you provide us a link to your page and login info to take a look?

    Thanks!

Viewing 20 results - 6,481 through 6,500 (of 53,646 total)