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 - 29,941 through 29,960 (of 53,646 total)
  • Author
    Search Results
  • #112324

    Adding Latest Post to home page and using the Portrait image in the Blog Options setting I’m getting rather large images. I’m using small images to start with 175×150 ish. Is there a css input or something to set these to a set size like 150×150 ?
    Thanks
    Frank

    #112309

    Ben, thanks for your reply. No, my blog is not a news feed. I just do not want the errors to cause a problem with how google ranks my page. It sounds like the errors mentioned don’t, so I can ignore them?

    Thanks
    Mike

    In forum: Virtue Theme

    Topic: mobile slider

    #112300

    Hi

    Ive built a simple cyclone slider, and its fine on the computer, but I get the error ‘revolution slider error: slider with alias select not found’ on the mobile version.

    Ive copied and pasted the cyclone slider shortcode under theme options > mobile slider.

    Also – there is no menu visible on the mobile homepage.

    Can you help?

    #112288

    I like that there are attachment pages now, I just have 2 more requests on how they work to get them more in line with what I feel is “standard” for various themes’ attachment pages I’ve used in the past.

    1) If you could style the title link to take on the theme’s global hyperlink behavior as set in theme options?
    —- It helps indicate to users that it’s a link and not just text.
    2) If you could make the image and title links to the file and not to a lightbox?
    —- (on some attachments that are images, clicking the link will open it in lightbox smaller than the image already represented in the attachment page, better to just go straight to */example.png)

    annotated screenshot link next post.

    Thanks for your consideration.

    In forum: Virtue Theme

    In reply to: WordPress 4.6 upgrade

    #112280

    I tried both Safari and Google Chrome – in both cases the ‘edit page’ is empty. Nothing in ‘history’. It can be assessed from Windows PC without problem.

    In forum: Virtue Theme

    In reply to: WordPress 4.6 upgrade

    #112270

    Hi Ben,
    Thank you. Should I follow the same steps to upgrade the theme: http://docs.kadencethemes.com/virtue-premium/installation/ ?

    I actually checked, I do have virtue_premium, not the version 5. My comp added the number 5 when downloaded. So no problem with upgrading so far.

    The problem is that EACH TIME wordpress upgrades, – the pager builder, slides and widgets disappear and context changes. I really do not know what to do. The host checked everything and said that thee is no problem from their side.

    Another thing: I cannot see ANY page context whilst editing. The page is blank. Visual, Text or Page builder options are empty. I work on mac. My friend is able to see everything using windows. I am not able to edit as I cannot see the page context.

    In forum: Pinnacle Theme

    In reply to: video background

    #112269

    Hey,

    <video autoplay muted loop>

    You would want to remove “muted” if you wanted sound.

    I’m seeing 4 differnet attempts on your site so it’s difficult to know what your expecting from what. I suggest you remove all and stick with the plugin.

    Your second link was just simply to an admin page on your site so I can’t see that without a login but I’m guessing your using this plugin: https://wordpress.org/plugins/video-background/

    But you seem to be linking to a youtube link. (NOT an mp4 video file). That method would only work when you have the files. You can’t do this with a youtube video. It’s html5 video so no youtube link.

    so use the plugin but use a video file
    Ben

    In forum: Pinnacle Theme
    #112263

    Hi
    I’m using Pinnacle PremiumVersion: 1.7.8.

    I have hard time to create a video background page on home page with html/css.

    The video is shown only 1 second and gone.

    I also tried a video background plugin.

    Only sounds I can see..

    The below link is actual home page. The both video backgrounds are still in this page.

    Please let me know if I need to tell more details..
    Thank you,

    #112262

    I’m using a plugin called IBS Calendar that allows a site to display multiple Google Calendar feeds.

    I’ve been using IBS Calendar successfully for some time with other themes and had no problems. However, I can’t get the feeds to show up in Pinnacle Premium. I’ve tried inserting the addresses of calendars that work on other sites, but nothing feeds. All I get is a pretty blank calendar with no events.

    Here’s the link to my calendar page in Pinnacle that’s not feeding:
    Here’s an example of the same plugin working properly on another theme:

    Is there something in the Pinnacle Premium theme that might be blocking Google Calendar feeds that I’m missing?

    Thanks,

    Charlie

    In forum: Virtue Theme
    #112259

    i wish i can send picture of it but…
    in product pages there is a huge choose selection side
    i don’t know what size i must to
    if i know how to change i change myself and try many options

    in topbar menu or second header menu there ara some words below the menus ‘like for the traveler’ ‘outdoor explorer pack ‘ …how to delete them ? sorry for weird questions

    #112256

    You would need to upload square images then you would set the image menu to be height based on image. That would allow the height to change as your screen changes where as when you set a fixed height it’s fixed to that height and the image is just a background for it.

    Also you can pass an image though the icon box shortcode just like the home page settings:

    image="urltoyourimage.jpg"

    instead of icon="icon-home"

    Ben

    #112255

    Hey,
    So you can create a new sidebar area in your theme options > misc settings. That would allow you to create a sidebar just for your recipes. Or in turn you can create sidebars that you would only show on certain pages.

    To control the sidebar for your custom post type you would need to use a child theme and in it add a function into the functions.php file.

    So if you want to remove the sidebar you can use this function:

    function kad_sidebar_recipe($sidebar) {
    	if(is_singular( 'recipe' )) {
        	$sidebar = false;
      	}
      	return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_recipe');

    If you want to change the sidebar id that is used for the recipe instead you can make it a new one you create using:

    add_filter('kadence_sidebar_id', 'kt_single_recipe_id');
    function kt_single_recipe_id($sidebar) {
     if(is_singular( 'recipe' )) {
              $sidebar = 'sidebar2';
     }
    return $sidebar;
    }

    Ben

    In forum: Pinnacle Theme

    In reply to: Kadence Woo Extras

    #112253

    Just to correct this, it’s not in recommend plugins, you would download from the my-account page here: https://www.kadencewp.com/my-account/ under your api downloads.

    Ben

    #112252

    By default for woocommerce you should be redirected to a “thank-you” page. The theme doesn’t control this, my guess is there might be a js error caused by some plugin stopping the ajax redirect from happening.

    If you can put your cart in sandbox and test check the console log in the browser right after you purchase.

    You can also look at your woocommerce logs.

    One thing I’m noticing is that your running https on your checkout but it doesn’t look like you set up the admin of your site that way? Or you did but after you set up all your theme options? becuase your images that you have set in the theme options are http.

    I suggest you make sure to load the admin in https and then reselect your backgrounds and logo so your images are set to use https.

    Ben

    #112247

    Josefina, It’s really best if you can keep this to one topic. You can create a new topic for additional questions. Please do that. Topics at not meant to be run on places to ask questions. Thanks!

    1. This isn’t a question that makes sense to me “There is way to let the fixed header?” In trying to guess are you wanting a fixed header? You can do that in your theme options > main settings.

    2. Use the admin menu > Kadence Slider and there build your slider then add that to your home page through the theme options > home slider.
    https://www.kadencewp.com/kadence-slider-pro/

    Ben

    In forum: Virtue Theme

    In reply to: WordPress 4.6 upgrade

    #112237
    This reply has been marked as private.
    #112235

    Hey James,
    That should work, but it could be the page id class is different. If you post a link to the page I would be happy to get it for you.

    Hannah

    #112231

    Hi Marjorie,
    You can edit the contents of your sidebar from Appearance > Widgets. If you wanted to remove your sidebar you can do so from the edit page by choosing a full width page template.
    Hope that helps!

    Hannah

    #112230

    Hello! My testimonials are not presenting on my testimonial page. I do have “testimonial grid” selected as the template, and the option to turn on/off testimonials in the theme extension section is “on”. Can you please provide me with some guidance? The testimonials did present at one time, but not showing on the page now. Here is my site: http://www.performanceplustennis.com. thanks, John

    #112229

    I have the “Latest Blog Posts” at the end of my home page and it is causing the following Google Structured Data errors and warnings for each Post listed:
    Error: author A value for the author field is required.
    Error: image A value for the image field is required.
    Error: publisher A value for the publisher field is required.
    warning: dateModified The dateModified field is recommended. Please provide a value if available.
    warning: mainEntityOfPage The mainEntityOfPage field is recommended. Please provide a value if available.

    I have the latest theme installed and these are the only errors I have left on the homepage. Any help is greatly appreciated.

    Thanks

Viewing 20 results - 29,941 through 29,960 (of 53,646 total)