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,081 through 14,100 (of 53,646 total)
  • Author
    Search Results
  • In forum: Virtue Theme

    In reply to: Wrong Page Indexing

    #212038

    Media creates an attachment page by default within WordPress. Using Yoast SEO you can redirect away from these pages and remove them from your site map so google ignores them.

    Ben

    In forum: Virtue Theme
    #212035

    Hey, Yes it’s based on a filter, in fact, you don’t need to use a template to have a page without a sidebar because there are meta box options to turn on and off a sidebar.

    Here is the function:

    function kad_sidebar_on_custom_page_template($sidebar) {
    if (is_page_template('page-fullwidth2.php')) {
    return false;
    }
    return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_custom_page_template');

    Ben

    #212032

    Hey,
    You don’t have to use that navigation at all. It’s there for those on larger screens. The pop out only shows if you hover over the theme options menu item. But if you simply click on that menu item you can see all the submenu items under that menu once on the theme options page. Or from within the theme options dashboard itself.

    Does that make sense?
    Ben

    In forum: Ascend Theme
    #212031

    i think google “needs” more space between the items

    Not really how things work. It’s about whether they are clickable without zooming. which the images are.

    Your issue though has nothing to do with any of that, it’s that your server is blocking google bot from accessing styles and so google bot is looking at your page unstyled and an unstyled page is not mobile friendly.

    For example go here: https://search.google.com/test/mobile-friendly

    Test your page. There you will see in the screenshot that it’s not styled correctly or like what you actually see when going to your site.

    You will see at the top left a notice that the page was partially downloaded. If you look at the details all your scripts and styles were not downloaded because Google could not see them.

    Make sense?

    Ben

    #212022

    Hello Team Kadence,

    I am trying to create a new template based off the fullwidth template so I started by copying the fullwidth template and renaming it (I just added a 2 to the name for testing purposes). My code is:

    <?php

    /* Template Name: Fullwidth2 */

    do_action( 'kadence_page_title_container' );
    ?>
    <div id="content" class="container <?php echo esc_attr( virtue_container_class() ); ?>">
    <div class="row">
    <div class="main <?php echo virtue_main_class(); ?>" id="ktmain" role="main">
    <?php
    do_action('kadence_page_before_content'); ?>
    <div class="entry-content" itemprop="mainContentOfPage">
    <?php get_template_part('templates/content', 'page'); ?>
    </div>
    <?php
    /**
    * @hooked virtue_page_comments - 20
    */
    do_action('kadence_page_footer');
    ?>
    </div><!-- /.main -->

    When viewing via wp-admin, it looks like it should – page title options, no other settings/metaboxes (it matches what the Fullwidth template looks like). However, on the frontend, a sidebar appears (which is not like the Fullwidth template).

    Is there a filter or hook I need to add that says don’t use a sidebar for this template? Thanks!

    #212018

    The mobile view of this page looks bad.
    Only when on smartphone and only on portrait view.
    I tested this on my Android phone and used Responsinator to check the other views. The tablet portrait view look ok.
    I am using Pagebuilder and Siteorigin editor widgets.
    As you can tell, the text is limited to only one or two words per line.
    Yet, there is a lot of white around the text, so it should be possible to utilize the white space.
    I don’t know why it’s doing that.
    I even tried adjusting the mobile padding on the widget layout to 0 top, bottom, left and right, and it makes no difference. Strange.
    What am I missing?
    Thanks for advising.
    Leila

    #212012

    Using Ascend and creating individual Woo templates for each category archive.

    Got an issue when scrolling down these pages on initial load – the first 8 to 12 product loops load fine but any listings below that overlap until I refresh the page.

    Example category

    Any larger product count categories across the website have the same issue.

    I’ve got WP Fastest Cache running, but flushing that doesn’t seem to have any effect.

    Am I maybe missing something when using Elementor to create the archive templates?

    Help welcome, great theme, cheers!

    #211998

    Hi guys, apologies if this isn’t Theme specific but you may be able to help…

    When I search for “cloud wireless” on google the google results list the pages it’s indexed as shown below however “router” and “ocean_01” aren’t actually pages. So I don’t know why it’s listing them as they are just media.

    It’s also not actually listing pages that are very important to the site. I wonder if you can advise how I might resolve both issues?

    http://www.cloudwireless.uk/
    Cloud Wireless provide WiFi Installations & SuperFast Rural Internet for Devon villages. Based in Exeter and covering All of Devon.

    Contact Us
    Contact Us. Please enter your details below and we will be in …

    Wireless Broadband Exeter
    High Speed Broadband in Exeter We currently cover most of …

    Network Status
    Network Status. Home » Network Status. Keep upto date with the …

    How It Works
    Wireless Broadband Explained How It Works Step 1: We …

    Router
    Leave a Reply Cancel reply. You must be logged in to post a …

    ocean_01
    Leave a Reply Cancel reply. You must be logged in to post a …

    #211992

    You should be able to click the link to the revision you’re after, and then hit the “Restore this Autosave” button to load the content.

    If it’s not letting you, make sure the slider at the top of the page isn’t selecting the most previous revision.

    -Kevin

    #211991

    Hey,
    Is your homepage set as a static page? You can set this from Settings > Reading. Then you can add whatever content you want to your home page. Next, enable Page Content at the top of your homepage layout manager from Theme Options > Home Layout. Does that work for you?

    Hannah

    In forum: Virtue Theme

    In reply to: No H1 headings found

    #211989

    Looks like you are adding this css:

    .page-header {
    display: none;
    }

    Ben

    #211986

    Hi guys I would like to add a text area with colour background to my home page just under the home slider but before the icon menu, probably using eliminator and it’s shape divider feature with parallax.

    Could you please advise how and where I go to find this as I cant seem to do anything on the edit page tab when on the page.

    The website is: http://www.cloudwireless.uk

    #211980

    Hello,

    1. You should be able to switch back and forth between text and visual editor tabs, but not between the page builder tab (if you’re using it).
    Sometimes formatting can get a bit messed up if you’re switching back and forth a lot, but usually nothing major that isn’t easily fixed.

    2. The text tab is meant for html. so if you want to add markup to your text, you need to manually wrap it in tags, or highlight it and click the few options that are available.

    See here for a guide to writing html code manually:
    https://www.w3schools.com/html/

    3. Sounds like maybe the page timed out when you were in the middle of editing it and your changes weren’t saved. You should’ve gotten an error message when the page failed to save though. I would try going into the post edit screen and look for the “revisions” area. If you don’t see it make sure that its activated in the Page Options tab at the top of the screen.

    Let me know if this is helpful.

    -Kevin

    #211978

    Hi Guys

    My website http://www.cloudwireless.uk has a pink hover colour when hovering over the 3 image menus towards the bottom of the home page. Could you please advise where/how I switch this off.

    #211977

    Hey all

    I am still unsure of the following and rather ask even if it is a stupid question.

    When I’m using Visual editor, can I change text while it is on visual or does it have to be on text tab? I remember once Hannah said I must change to text mode before I type. Problem is I get busy and when I get myself I’ve already changed the text on visual. Is that a problem and does it mean I must re-do the page?
    2) Another question, when I am in text mode, I can’t change the font (heading 1, 2 ..). I then have to do it in the visual mode before moving back to the text. If a person is not supposed to type text in visual mode, why does it let us change the text?

    3) I’ve changed a post and it took me very long as I couldn’t attend to it all the time. When I was finished I pressed done and then save draft. It then threw me out and all my changes (hard work) is missing? Is there a certain time period to make changes before saving changes? Is there any way I can retrieve it?

    Thanks in advance.

    In forum: Virtue Theme

    In reply to: Link to tab?

    #211970

    An example of what’s going on might help.
    Go to https://canberra-alliance.org.au/ag-gcgw/
    Click on Kitchen Table Conversations (KTC)
    This opens https://canberra-alliance.org.au/resources/#sctabkitchen-table-conversations
    but with the page scrolled to the bottom.

    #211963

    The logos have disappeared on the testimonials widget on my home page. (bottom)
    Cannot figure out why-thanks for your help.

    In forum: Virtue Theme

    In reply to: Advice Needed

    #211954

    Thanks Kevin. I will start digging into using Yoast to properly update urls. Thanks for the link.

    I am using the theme portfolio, but there is a weird confusion. Any time I update any plugin on the site, I get 404 errors for portfolio pages. I have figured out to fix the issue, I have to go into JetPack and simply reset the toggle for using Portfolios (I turn it on, then turn it off), then my site resets something somewhere, and my links from the Dive Travel portfolio grid work once again. When I work on this site, I may remove JetPack if the WooCommerce plugins allow me to do so. It seems at the time I set up the store, I had to use Jetpack with WooCommerce for some reason

    Dive Travel Portfolio Grid: https://brassanchor.com/index.php/trips/

    Ellen

    In forum: Ascend Theme
    #211946

    Hannah, good morning, sorry but we got another alert from google console, it is the same but on another type of visalization: masonry showed in this page http://www.solutions2enterprises.com/s2e-winter-cocktail-2018/?lang=it for example… i think google “needs” more space between the items, can you give me the code to “open” a bit more the layout? or simply, in mobile, have all the pics at 100% width and so no more masorny?

    about the google alert: do you think is a recent change in the google console bot analyzer rule? i mean, i never saw it… it could be a general problem of the theme “paddings”

    thank you very much
    Angelo

    In forum: Virtue Theme

    Topic: Advice Needed

    #211934

    Hello,

    This is a loaded request. I need some advice on a website that I originally created a couple years ago. It was my first WordPress website and I made a couple critical mistakes.

    First, my most horrific and embarrassing mistake is the permalink structure. I used the default setting which put “index” on every page (why that was a default structure, I have no idea). I need to update the permalink structure, but the site has a lot of traffic and is well seasoned from a search engine positioning point of view. What is your best recommendation to tackle the permalink structure? I am certified in Yoast for WordPress. Is this the best plugin to use to remedy the issue by using the redirect feature? This issue is a bit of a nail-biter for me.

    Second, I have not yet updated this site to the latest version of WordPress. I’m super-nervous about that because the site is fragile, and I’m guessing that this is because of the permalink structure and/or the use of Jetpack. I regret using Jetpack and I want to deactivate the plugin, but every time I do, the portfolio functionality is lost, and I get “404” errors for portfolio pages. It’s a really strange issue.

    Since I’ve started using Kadence Themes, I have found that Ascend works pretty well for most of my sites. So I’m reconsidering a theme change for this site as well.

    I’m looking at a do-over here and would value your advice to tackle these major issues, as detailed as you have time for. I do realize that these issues have nothing to do with your awesome themes. But I thought you were the best place to start to get advice.

    The site is and I’m happy to private message you the login.

    Thank you.

Viewing 20 results - 14,081 through 14,100 (of 53,646 total)