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 - 30,261 through 30,280 (of 53,646 total)
  • Author
    Search Results
  • #110480

    Hi, my question is about the featured products pictures.
    I sell clothes on my website, and many of my shirts have a design on the front and back. On your demos home page, when I put the mouse on top of a featured product picture (i.e. the front of a shirt), it flips, showing a second picture(i.e. the back of the shirt).
    I would like some help to set up this feature on my site!
    Thank you!

    #110472

    Hi there,

    Please see my current blog landing page:

    I would like to change the way the blog excerpts appear on the landing page, to be like this “grid” style”

    I have searched all over the dashboard and on the page editor for the blog, and I cannot find the settings to change this.

    May I ask you to please advise me on how to change the settings?

    Thank you,
    Amber

    In forum: Pinnacle Theme

    In reply to: Cannot Use Parallax???

    #110462

    Hi, Hannah. Thanks your reply.
    I tried many many times what you say… But in vain. What is wrong???
    All CTA by Page Builder fit to the default width, not to fullwidth.
    However, other two CTA by ‘Theme Options> Home Layout & Footer’ were fitting fullwidth.
    Please look my site.>>>http://www.cougarmotors.com/
    Thank you, regard.

    In forum: Virtue Theme

    In reply to: Js. script problem

    #110451

    1. It’s in the head, I can see the code but it is also being edited by cloudflares “rocketoptimize” which is replacing type="text/javascript" with type="text/rocketscript" and may be why the tool your using it’s picking it up.

    Ben

    <script type="text/rocketscript" data-rocketoptimized="true">
      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
      (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
      m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
      })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
      ga('create', 'UA-77390044-1', 'auto');
      ga('send', 'pageview');
    </script>

    2. The filter issue is caused by pagebuilder, i’ve already reported to the plugin author. https://wordpress.org/support/topic/siteorigin_panels_sidebars_emulator?replies=2

    Ben

    #110449

    Hi Ben,

    of course I did had already the idea of using the page builder, right before I did the page the way it is now. I didn’t want to use the page builder in order to keep the page easy editable as my customer isn’t that fit with wordpress.

    It’s true a dutch portfolio category type is defined the theme options for the full portfolio as well for the carousel.
    When with WMPL switched to the german theme options not category is selected, but i did work before, in way that dutch selection was also selected in the german settings – but the german translated portfolio category type.

    I would be happy to send you an admin login and help to improve your cool theme.

    BR
    Georg

    In forum: Virtue Theme

    In reply to: Metabox Help

    #110446

    Here is what you would use:

    
    add_filter( 'cmb_meta_boxes', 'custom_kadence_remove_contact_metaboxes', 50);
            function custom_kadence_remove_contact_metaboxes($metaboxes) {
                foreach ($metaboxes as $key => $value) {
                    if($value['id'] == 'contact_metabox'){
                        $key_contact_metabox = $key;
                    }
                }
                // contact page template
                unset($metaboxes[$key_contact_metabox]['fields']['0']);
                unset($metaboxes[$key_contact_metabox]['fields']['1']);
                unset($metaboxes[$key_contact_metabox]['fields']['2']);
            
                return $metaboxes;
                
            }

    Ben

    In forum: Pinnacle Theme

    In reply to: Cannot Use Parallax???

    #110445

    Hey,
    You can do this using page builder. Edit the row and set the row layout to full width stretched and the Background Image Style to parallax. You can set the page template to default.

    Hannah

    #110435

    Hey,
    1. If you have assigned a featured image to each post you can show that image by setting your “post summary” option in the post settings or by setting a default for your post summary option in the theme options > blog options. Use landscape image for an example.

    2. “make my sidebar looks more modern” – I don’t know what your definition of “more modern” means? So can you be more description about what you want?

    3. Which icon menu? Home page? Do that in your theme options > home layout settings scroll down to the icon menu area.

    4. In your theme options > shop settings set the product title min height to 80.

    5. Please read this post: https://www.kadencewp.com/need-for-speed/

    Ben

    #110430

    Hi, Admin.
    Cannot we use the parallax effect in a page on present version of the Pinnacle Pro?
    Before, I was able to do it. But now, there is no ‘fullwidth’ in ‘New fixed page> Page Attributes> template’ section.
    Therefore, it is impossible at all settings. Is there anyway how to do?
    Thank you.

    #110429

    Wordpres doesn’t save animation when resizing a gif image. So I can’t see your site becuase it’s behind your coming soon plugin?

    But here is an option. It’s more of a hack but will get what I think you want.

    Go into the portfolio grid page. Scroll down to where you have the option for crop images equal height and make sure that is set to “yes”

    Then right below it set the height to 5000.

    Thats basically going to give wordpress a ridiculous size for your images and since it won’t be able to create that size it will output the image in the size you upload it as. That will mean no cropping and the image will still contain animation.

    Ben

    #110420

    Hey,
    I think hannah meant “masonry” which would keep your image ratio set so that the theme would not crop it square. You do this by turning off “crop images to equal height”

    http://docs.kadencethemes.com/virtue-premium/templates/portfolio-page-template/

    The theme isn’t cropping your image with two columns becuase your image is way to small. to columns and the theme would create a much large image.

    Ben

    #110418

    You can unhook the page title with this :

    remove_action( 'kadence_page_title_container', 'virtue_page_title', 20 );

    You could then hook right into the content with this:

    
    add_filter('the_content', 'custom_add_title_in_content', 20);
    function custom_add_title_in_content($content) {
     	if( ( is_page() && !is_front_page() ) || is_archive() ){
        	$content = '<h1 class="entry-title">'.get_the_title().'</h1>'.$content;
    	}
    	return $content;
    }

    Ben

    #110416

    Thanks for your quick reply, but I’m using a free version of the theme right now. Is there a way to make it responsive? Or maybe use another approuch to the full width image on home page?

    In forum: Virtue Theme
    #110413

    Hey,
    The filters do not work with a shortcode. Sorry! You would need to use the portfolio grid page template.

    Hannah

    #110409

    Thanks for your help.

    The import didn’t helped, it’s stay the same so i changed it manually.

    -Can you tell me how can i show the post images in my blog page? http://www.royal-sea.com.

    -Also i would like to know if you have some tool which can make my sidebar looks more modern?

    -How can i change the icon menu colors?

    -In the products page the products are not sorted straight because the product name length. how can i change it that before it passing line (the reason of the problem) will be “…”? product page: http://www.royalsea-us.com/shop/

    – According google page speed tool my page load very slowly – https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.royalsea-us.com&tab=mobile. How can i make it faster?

    Thank you!

    #110407

    Ok, so that is why you didn’t have this page: http://themes.kadencethemes.com/virtue-premium/split-content-wide/

    It’s not on the demo three site.

    Ben

    #110402

    http://robertgarcia.co/portfolio (doesn’t animate here.)
    http://robertgarcia.co/portfolio/motion-design (does animate here.)

    I even resized the image to have a full width of 366px, which is the thumbnail size for the portfolio page.

    In forum: Virtue Theme

    In reply to: Metabox Help

    #110386

    Hi Ben,

    Thanks again for the snippet on how to use filters to update my options. I’ve got most of the needed changes done now. I am running into an issue on a few options that I need to remove but can’t seem to figure out how. For example, on the Contact page template, we only want to use the map options but none of the contact form options.

    array(
                    'name' => __('Use Contact Form', 'virtue'),
                    'desc' => '',
                    'id' => $prefix .'contact_form',
                    'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ),
    					array( 'name' => __('No', 'virtue'), 'value' => 'no', ),
    				),
    			),
    			array(
    				'name' => __('Contact Form Title', 'virtue'),
    				'desc' => __('ex. Send us an Email', 'virtue'),
    				'id'   => $prefix . 'contact_form_title',
    				'type' => 'text',
    			),
    			array(
                    'name' => __('Use Simple Math Question', 'virtue'),
                    'desc' => 'Adds a simple math question to form.',
                    'id' => $prefix .'contact_form_math',
                    'type'    => 'select',
    				'options' => array(
    					array( 'name' => __('Yes', 'virtue'), 'value' => 'yes', ),
    					array( 'name' => __('No', 'virtue'), 'value' => 'no', ),
    				),
    			),

    So I’d like to remove these options. Previously, I had just commented them out. I found some online tutorials that suggest that I should use unset and the ID of the field I’d like to remove but I can’t seem to get that to work (I tried the ID with and without the _kad_ prefix). Can you help? Thank you!

    #110383

    Hi,

    I have 2 question:

    1. How can i access to the <body> and <header> code? I saw several video which find this code by appearance> editor, but i cannot find it there.
    2. I just upgrade from free theme to premium and it deleted my logo, homepage slider and blog post images. Is there a way change to the premium and save these things from the free?

    Thanks

    #110372

    Need help. Need to show my Motion Graphic GIF’s with their animation on the portfolio feature page.

Viewing 20 results - 30,261 through 30,280 (of 53,646 total)