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,401 through 14,420 (of 53,646 total)
  • Author
    Search Results
  • #209903

    Hi Kevin,

    I made the change on a test site to check that it works but the test site is difficult to make public. I can make it on my public site because it seems to be reversible. But first, could you confirm that the WP requires the guid field in wp-posts should match the url from edit pages.

    Thanks

    Ross

    #209895

    Hi Ben,

    I recently updated this site from Virtue Premium 4.0.6 to version 4.8.7.
    This broke the custom metaboxes. I looked through the metabox folder in the 4.8.7 version and it looks like the old hook cmb_meta_boxes is now cmb2_admin_init? I tried just switching the hook in the below code but that blows out the backend and just gives a white page so I set it back temporarily. Could you point me in the right direction to update it so it works with cmb2 in the new theme?

    
    /* CUSTOM KANJI IMAGE LINK FOR PAGE HEADER TITLES */
    add_filter( 'cmb_meta_boxes', 'atk_page_custom_metaboxes' );
    function atk_page_custom_metaboxes( array $meta_boxes ) {
    
    	// Start with an underscore to hide fields from custom fields list
    	$prefix = '_atk_';
    
    	$meta_boxes[] = array(
    				'id'         => 'atk_page_title_kanji_img_meta',
    				'title'      => __( "ATK Page Title Kanji", 'virtue' ),
    				'pages'      => array( 'page', ), // Post type
    				'context'    => 'normal',
    				'priority'   => 'high',
    				'show_names' => true, // Show field names on the left
    				'fields' => array(
    					array(
    						'name' => __( "Kanji Image", 'virtue' ),
    						'desc' => __( "This will go behind the page title.", 'virtue' ),
    						'id'   => $prefix . 'kanji_img',
    						'type' => 'file',
    					),
    				)
    			);
    		return $meta_boxes;
    }
    
    /* CUSTOM STAFF RANK METABOX */
    add_filter( 'cmb_meta_boxes', 'atk_staff_custom_metaboxes' );
    function atk_staff_custom_metaboxes( array $meta_boxes ) {
    
    	// Start with an underscore to hide fields from custom fields list
    	$prefix = '_atk_';
    
    	$meta_boxes[] = array(
    				'id'         => 'atk_karate_title_meta',
    				'title'      => __( "ATK Karate Title", 'virtue' ),
    				'pages'      => array( 'staff', ), // Post type
    				'context'    => 'normal',
    				'priority'   => 'high',
    				'show_names' => true, // Show field names on the left
    				'fields' => array(
    					array(
    						'name' => __( "Karate Title", 'virtue' ),
    						'desc' => __( "This will go above the staff Image", 'virtue' ),
    						'id'   => $prefix . 'karate_title',
    						'type' => 'select',
    						'options' => array(
    							array( 'name' => __('', 'virtue'), 'value' => '', ),
    							array( 'name' => __('Shidoin', 'virtue'), 'value' => 'Shidoin', ),
    							array( 'name' => __('Sempai', 'virtue'), 'value' => 'Sempai', ),
    							array( 'name' => __('Sensei', 'virtue'), 'value' => 'Sensei', ),
    							array( 'name' => __('Renshi', 'virtue'), 'value' => 'Renshi', ),
    							array( 'name' => __('Shihan', 'virtue'), 'value' => 'Shihan', ),
    							array( 'name' => __('Shidoshi', 'virtue'), 'value' => 'Shidoshi', ),
    							array( 'name' => __('Kyoshi', 'virtue'), 'value' => 'Kyoshi', ),
    							array( 'name' => __('Hanshi', 'virtue'), 'value' => 'Hanshi', ),
    						),
    					),
    				)
    			);
    		return $meta_boxes;
    }
    In forum: Ascend Theme
    #209889

    2. Try going to Theme Options> Shop Archive Settings, and set “Enable Product Image Aspect Ratio on Catalog pages” to OFF. Does that make a difference?

    4. Just to be clear, you’re wanting to display variations in your archive pages? Unless I’m missing a feature that’s included in one of our plugins, I don’t know how you would do this. You would likely have to use a third party add on. I’ll let you know if I find anything.

    -Kevin

    #209878

    Change this css:

    .slick-slider .product_item .price {
        text-align: center;
    }

    to this:

    .slick-slider .product_item .price {
        text-align: center;
        padding: 0;
    }

    Which pages are you not seeing the footer on? I’m seeing it across your site.

    Hannah

    #209868
    This reply has been marked as private.
    In forum: Ascend Theme
    Anonymous
    #209867

    Hi Kevin,

    Thanks so much for your help!

    #1 Helped, thank you.

    #2 The image sizes still have not updated a few days later. Wondering what else I can do?

    #3 We can just forget for now.

    #4 I want the checkboxes to appear next to each product / row on the main Supplement shop page:
    https://gallbladdersupplements.com/shop/

    The idea here is that we want people to be able to land on this page, just check the boxes next to everything they want, and then batch “add to cart” all at once. Does that make sense?

    Thank you again!

    // Amber

    In forum: Ascend Theme

    In reply to: Turn Font White

    Anonymous
    #209865

    Perfect, that did it – I’m still waiting for additional text from the client but hopefully I will not need to use H2 anywhere else on that page (unless it’s also in white).

    Thank you for the help!

    #209860

    In your theme options > shop settings you can set the products per page and there you can also turn off the category filter.

    Ben

    #209848

    First I wanted to say I’ve really enjoyed the Woocommmerce Elementor templates. I’ve been able to customize how archive and product pages display far better than I ever could fiddling around with child themes!

    I noticed recently that there’s an option in Ascend Theme options for Navigation arrows on product pages. I gather since I’m using the Elementor templates that simply ticking that box won’t actually do anything.

    And I can’t find an option for navigation in the template items. Am I missing it or is this something that might be added to a future update?

    Thanks!

    Mark

    #209845

    Hey,

    Can you view the posts or pages once they are published? Can you post a link to your site so I can check if something obvious is keeping this from working properly?

    -Kevin

    In forum: Ascend Theme

    In reply to: Turn Font White

    #209843

    Hey,

    You can add CSS like this to Theme Options> Custom CSS to only change the h2 elements on that page:

    .page-id-7 .entry-content h2 {
        color: #fff;
    }

    Does that work for you?

    -Kevin

    #209833

    Case 1
    When permalinks are set to Plain

    A new Page TestA has permalink

    and can be displayed by putting the permalink URL directly in browser or by preview.

    Case 2

    When permalinks are set to Post Name

    New Page TestA has permalink

    Directly into the browser yields

    URL /testa/ not found on server

    Directly entering ://www.example.com/?page_id=1494 yields

    URL /testa/ not found on server
    browser or by preview.

    correcting this just involve changing guid in wp_posts?

    #209832

    Hi Kadence team,

    We have just updated to the latest version of Pinnacle 2.3.2 and it seems like our plugin for the wishlist function (using TI wishlist) is not functioning well. Most of our older product pages are showing 2 “add to wishlist” buttons whereas newer product pages are unaffected.

    You may view some of the affected products here:

    As mentioned, most of the older products are affected with this issue. Do kindly get back to us on this issue.

    – CA

    #209826

    You would either need to set hte posts per page to include all of your products or turn off that filter and use a menu and link to categories.

    how do I do that?

    In forum: Pinnacle Theme

    In reply to: Protected article

    #209825

    How exactly are you making your page private? Would you mind sending login info so I can take a look at your settings? You can set as a private reply.

    Hannah

    In forum: Virtue Theme

    In reply to: Both Sidebars

    #209824

    Hi Eugene,
    There isn’t a built-in function for this, but a workaround would be to use a sidebar template, then use a page builder plugin to create a long side column with widgets added so it looks like a sidebar. Would that work for you?

    Hannah

    In forum: Virtue Theme
    #209818

    Nope. I only enter css code using the Additional CSS section in the Customize feature.

    The style.css in my child is the same since day 1 with no css code.
    I’ve added an admin-style.css with one line just to increase the length of the admin search inputs.

    I also know that I’m not getting this 404 error every time someone uses the Lightbox feature on the products gallery. If so, my log file would be packed.

    The server log from the month of November shows 127 – 404 errors when a client is trying to access: /product/img/light_close.png
    I show the same in Awstats on the server and they show up in the 404 section of the Redirections plugin.

    I can’t really link to anything for you as I have never had it fail to serve light_close.png for me personally. (That I know of)

    When I do an Inspect and view the Styles section using Chrome, I can see it calling the relative URL in the example page you gave me.
    When checking on my site, I see the same code and see my custom css overriding it with the absolute URL. Otherwise all the important css code is the same on both.

    I agree that the relative URL in your css is correct. I just can’t figure out the oddity.
    Honestly, I hate to take up more of your time with this. I thought you might have dealt with it in the past.
    I’m happy to help if there is anything else I can give you. Let me know.

    You folks rock!
    J

    In forum: Ascend Theme
    Anonymous
    #209817

    Hello,

    I am trying to turn all the font white in the row at the top of this page (over the green background):

    I was able to change the paragraph text white at the widget level by going to Edit >> Design >> Font Color

    But when I entered #ffffff there, it *only* changed the parapgraph copy, NOT the font in the header tags.

    I would like to use the different fonts I have set in the Typography section, but I cannot turn this font white at the website level because there are other places I am using it that need to remain dark (such as the front page).

    I have tried multiple ways to override the H2 & H4 font color using html directly in the visual editor, and also by dropping css into the Widget Styles >> Attributes >> CSS Styles section, as below:

    <style>

    h2 {
    color: #ffffff;
    }
    </style>

    (and also without the <style> & </style> to see if that worked better)

    Nothing I do seems to work, to make the H2 and H4 font turn white, other than changing it sitewide. Do you have a way I can change it for this widget only?

    Thank you in advance!

    #209803

    Just set up a new site with the amazing free version of Ascend – one small bug I am finding is that the price in the product carousel tabs is appearing left justified, instead of center. The product title immediately above it is centered just fine, but not the price. How can I get the price to also be center-justified?

    #209797

    I updated, The only thing you needed to do was set the full content to show in your staff page settings.

    Ben

Viewing 20 results - 14,401 through 14,420 (of 53,646 total)