Viewing 30 results - 135,691 through 135,720 (of 142,933 total)
  • Author
    Search Results
  • #205137
    Wordpressed
    Participant

    Hi,

    I am building a Gravity Forms with pagination. Each time I move to the next page of the form the page re-aligns and places the top part of the Gravity Forms underneath the menu, it seems it thinks it putting the form at the top of the page but isn’t recognising the floating header.

    Does anyone know of a quick fix for this kind of problem please?

    Regards,

    Graeme.

    #205136
    This reply has been marked as private.
    #205116
    p_niedrich
    Participant

    Hi,

    after the last Enfold update I got a lot of error 404 issues. I’m using WPML as well and followed the instructions on other topics. I added the following code to my functions.php:

    ———
    flush_rewrite_rules( false );

    add_action(‘init’,’deactivate_avia_flush’, 10);
    function deactivate_avia_flush(){
    remove_action(‘wp_loaded’, ‘avia_flush_rewrites’);
    }
    ———

    That solved at least most of the problems. But with portfolio entries I still get the error 404.
    Have a look, on this page I display a portfolio grid:
    http://berlinguitartrio.de/biographien/

    Regards
    Philipp

    #205111

    In reply to: Mobile

    Hey!

    Please add !important to Ismael’s code so it should be

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link { display: block!important; } /*iphones etc scroll better by tapping the status bar at the top of the screen*/
    }

    Then flush browser cache on your iphone

    Regards,
    Yigit

    #205092

    In reply to: Mobile

    Hello!
    Thanks for your help, I added the .responsive #scroll-top-link code to custom.css and am still not seeing it consistently.

    It is working on this page:
    http://jmhpremium.azurewebsites.net/

    But not these pages:
    http://jmhpremium.azurewebsites.net/bases/
    http://jmhpremium.azurewebsites.net/products/
    http://jmhpremium.azurewebsites.net/graviesdemi/

    I’m testing on an iphone 4s in safari.

    Thanks for your help! Let me know if you need any further info.

    Carolyn

    #205079

    Hey Minz!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

     .header_color .avia-tt .avia-arrow, .header_color .avia-tt { background-color: red; color: blue; }
    #top .header_color input[type='text'] { background-color: blue; color: white; }
    .header_color input[type='submit'] { background-color: red; }
    .header_color input[type='submit']:hover { background-color:blue; }

    Best regards,
    Yigit

    #205059

    Hi!

    If Kriesi has some additional input he will be able to open the topic and add it in. I’ve closed it for now since so it doesn’t accidentally become a secondary feature request topic :)

    Cheers!
    Devin

    #205048

    Hi sundialstudios!

    Can you try the css I posted here and see if that works for you: https://kriesi.at/support/topic/color-box-anchor-tag-is-dicplaced-due-to-the-statis-header/#post-202912

    Best regards,
    Devin

    Thanks for your tip on the plugins. Yoast WordPress SEO had an upgrade. After upgrading it, the website displayed the same correct content that displayed in WP control panel. How can an available upgrade damage a website? I didn’t make any changes to the website, it just stopped working because a plugin had an update available???

    #205020
    Philippe
    Participant

    Hello, i am a new user to Enfold.
    I am not a software developper;
    I create a portfolio, and i insert an EasySlider.
    I want to resize the EasySlider, but there no mention like A/B on the top, at the left, to change the size of the column.
    I have been creating a layout element of 1/3, and i would like EasySlider to be at 2/3, on the same level.
    I tried everything, drag & drop of the 2 boxes, i looked everywhere, I just do not see.
    Help, please !!!

    #205005

    In reply to: Subscribe to Forum.

    Hey german_photographer!

    No, afaik there’s no feed for topic or forum entries. The default blog feed url is http://kriesi.at/feed/

    Best regards,
    Peter

    bzzz007
    Participant

    Hello,

    I’m looking for :
    1. Delete text informations below the comment box
    2. Get up the comment box above the comments
    3. Add a comments navigation (I have a lot of comments : http://www.stoplaclope.fr/champix)

    Can you help me?

    #204976
    nicolasweh
    Participant

    https://kriesi.at/support/topic/portfolio-sortable-all-no-first-by-default/

    Sorry for this new topic, but I see the other closed to new entries, and I just want to know if there has been or will be in the future some improvement regarding this. Thanks

    #204946

    Hi!

    Yes, Devin hit the nail on the head. It’s like taking painkillers – they may help you to bear up against pain but they won’t heal the disease…

    Regards,
    Peter

    #204927

    In reply to: Contact & cart icons

    link to the website: cristinarichart.com
    As you say the social icons are on top of the logo when you use the Fix Header but I’m using “Heaser with social icons and bottom” and in this case only the telephone (something I don’t need) is on top of the page.
    By contact call I meant the word CONTACT (or an icon) which you click to call the contact form page.
    Sorry for my English.

    Hey!

    My bad! Glad it worked. :)

    Cheers!
    Ismael

    This reply has been marked as private.
    #204913

    In reply to: Mobile

    Hi JMH_International!

    It should be visible for all pages. Can you please give us a link to the page without the scroll to top button? Please add this on your custom.css or Quick CSS to enable the button on mobile devices:

    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .responsive #scroll-top-link{display: block;} /*iphones etc scroll better by tapping the status bar at the top of the screen*/
    }

    Regards,
    Ismael

    Hi!

    1.) Let’s start again. To make the header transparent, please add this code:

    .header_color .header_bg {
    background: rgba(0,0,0,.5);
    }

    Move the slider or the main div towards the top using this:

    .fixed_header .home #main {
    padding-top: 0;
    }

    Edit js > avia.js file to remove the gap below the fullscreen slider. Find this code on line 687:

    slide_height = Math.ceil( (viewport / 100) * this.options.height );

    Replace it with:

    slide_height = Math.ceil( (viewport / 100 ) * this.options.height ) + 88;

    2.) You can’t move the border because it is the content border. There is a javascript where you can force or copy the height of a certain div then apply it on another. You can then use this Quick CSS:

    #top #main .sidebar {
    right: -50px;
    border-left-style: solid;
    border-left-width: 1px;
    }
    
    .content {
    border: none;
    }

    Please hire a freelance developer to help you create a script like that.

    Cheers!
    Ismael

    This reply has been marked as private.
    #204901

    Topic: Mobile

    in forum Enfold
    JMH_International
    Participant

    Hi!
    I have a few questions about the mobile site,
    I’m using the Responsive Header Main Menu: Display as Dropdown Menu & Responsive Layout Default for mobile and notice an arrow in a square box to scroll back up to the top on some pages, but not all.. How do I enable this setting for all the pages on mobile?

    Thanks!

    #204900

    In reply to: Contact & cart icons

    Hi!

    Can you please give us a link to the website? The social icons should be on top of the logo on mobile view. What do you mean by “contact call”?

    Best regards,
    Ismael

    #204893

    In reply to: SEO

    Hey!

    I can only comment on the h1 issue which is mostly considered to be incorrect at this point. You can have multiple h1 elements on a page if they are called for an valid. Everyone is welcome to customize the theme for their own SEO best practices however.

    As for the Woocommerce product feed getting indexed, you will need to take that up with WooCommerce support as I don’t believe the theme has any effect on preventing WordPress SEO from doing its job there.

    The search form at the top is just using the regular WordPress search. It is ajaxed but I’m not sure how that would or should effect crawled behavior. If its causing an issue or you are worried about it then disabling it is your best bet.

    I’ll tag Peter and see if he knows why the search field is getting crawled.

    Best regards,
    Devin

    Hi!

    1.) Please add this on your custom.css or Quick CSS:

    .fixed_header #main {
    padding-top: 100px;
    }

    2.) You can move the sidebar to the right using this:

    #top #main .sidebar {
    right: -50px;
    border: none;
    }

    Cheers!
    Ismael

    This reply has been marked as private.
    #204870

    Topic: SEO

    in forum Enfold
    Imburr
    Participant

    Alright, I am developing a site for Virginia SEO, at https://www.virginiaseo.org

    I have been whittling away at content issues and such, and have finally got the site down to something that I would call optimized. I discovered a major issue over Christmas, and just discovered another major issue as well, which I will share:

    When you install WooCommerce into the theme, and you enable header bars with the title and breadcrumb, every product page has two H1 tags on it. This is a big no-no SEO wise as I am sure you know.

    This is what I did:

    Line 28 in archive-product.php in WooCommerce
    <h1 class=”page-title”><?php woocommerce_page_title(); ?></h1>

    Left This heading alone, since the product title is what I would like to be my H1

    Change line 274 in themes\enfold\functions-enfold.php

    ‘heading’ => ‘p’ //headings are set based on this article: http://yoast.com/blog-headings-structure/

    I changed this to P from H1, and then applied some re-sizing to it. the downside is that this change I made was site wide, so I had to go through all of my pages and manually add a H1 tag to the page.

    ————————

    My second issue I just discovered. I use Yoast SEO of course, and I have enabled the option to:

    Sitewide meta settings
    Noindex subpages of archives
    If you want to prevent /page/2/ and further of any archive to show up in the search results, enable this.

    And if you go to my pages, you will see the meta robots. But I plugged my site into Google webmaster tools, and look at what I am seeing:
    http://cl.ly/image/3F2S0o150f2b

    It seems Google is crawling the sort links and other links as well.

    Also while we are on the topic, I use a SEO tool called Raven SEO. They do a crawl of the site as well. I discovered that the TOP search button (The one in the shape of a magnifying glass) which is enabled in Enfold options was getting crawled as well. The result was 1000 failed listings of crawling pages such as site.com/product/s?=

    I solved this by disabling the header search feature.

    But all of these items are check marks against the site in my opinion- Google finding tons of 404 errors because it is trying to crawl a crazy sort link on the page is not right. I am going to go about blocking some of this stuff now with robots.txt… which is against my better judgement, I do not like to use robots.txt except in extreme circumstances.

    Thanks,

    Chris

    This reply has been marked as private.
    #204858

    Hi NaturaIntegrativeMedicine!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .title_container { background-color: red!important; }
    #top .alternate_color.title_container .main-title a {
    color: white; }

    Best regards,
    Yigit

    Hey!

    1- I have just checked your website and it is working fine on my end. Please see screencast here http://www.screenr.com/3qIH,
    2- Can you post a screenshot and show how you would like to look?

    Regards,
    Yigit

    This reply has been marked as private.
Viewing 30 results - 135,691 through 135,720 (of 142,933 total)