Viewing 30 results - 4,111 through 4,140 (of 7,495 total)
  • Author
    Search Results
  • #728045
    #727893
    philipross
    Participant

    I started using the Enfold theme mainly because of favourable comments about its integration with Woocommerce. I’ve been very pleased with the theme, but seem to have run into a frustrating problem, namely that it is not possible to have multiple images with variable products. It is of course possible to add images to the Woocommerce product gallery, but they will then be incorrect when a variation is chosen.

    I’ve read quite a few posts about this on here and elsewhere (going back several years), yet it seems that no solution has been found for this problem. I’ve looked at the Smart Variations Images plugin, the Woocommerce AVI plugin, and some others, but so far as I can tell there is no fix.

    Have I understood this correctly? This is such a severe limitation on the theme’s usefulness for e-commerce that I’m wondering if I’ve missed something obvious despite all my searches.

    I don’t want to ditch Enfold too hastily…implementing new themes is not my favourite task.

    #727797

    Topic: Enfold search

    in forum Enfold
    kyagi
    Participant

    Hi.
    I’ve found a solution to add image in Enfold search results page, but I need to add also price, stock and review of woocommerce product.
    Also is possible to order by price the searched product?

    #727645

    In reply to: Shop und Sprache

    Dieter Krautwald
    Guest

    Hi, I have bought the enfold theme and transferred the files via ftp on the host. But in the admin area I can`t find the theme, Is there anything different to do (like with other themes)? ANother way to install was to search for new tems in the download folder, There I an find the files but it is not possible to install the themes fro there..??? What ca I do?
    regards
    Dieter

    #727421
    LindaSherman
    Participant

    Please see the screen shots here show site widths I have researched using Firebug:

    (I made sure to keep this page very simple. Just a series of screen shots. Most have captions.)

    With Firebug:
    I can see that the actual full width for BertaArt.com is 1140 pixels wide.

    With a sidebar, the content piece is 782 pixels wide.

    An image is 770 pixels wide.

    For the Enfold settings, as you can see in the first 2 screenshots:
    For content/sidebar I put 73%/27%

    In settings, I put 1240 pixels for maximum container width but I should probably change this to 1140 which is the actual container width?

    Can you please just confirm that I have deciphered what the actual widths are.

    I want to use a sidebar on all pages and posts except for the Home Page.

    I know that I can put in larger images because the site is set for “stretched content” but I am trying to do as little of that as possible for the sake of site speed.

    #727265

    In reply to: add custom Javascript

    Hi,

    @rachelvanstaalduinen To add a jQuery script to any wordpress site

    1. Create your .js file with only the js code in the example.

    2. Add the css to Enfold > General Styling > Quick CSS

    3. Copy the html to a codeblock element on the page where you like to display.

    Then enqueue the scripts by adding the code provided in the below link to function.php :

    http://stackoverflow.com/questions/11159860/how-do-i-add-a-simple-jquery-script-to-wordpress

    @pipinvest01 we answer all tickets on first come first serve basis however some tickets may take longer because it needs to be researched kindly request you to be patient :)

    Best regards,
    Vinay

    • This reply was modified 9 years, 3 months ago by Vinay.
    #727024

    Hi,

    Thank you for sharing your solution George. I have edited the post on our documentation and added the workaround – http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
    Let us know if you have any other questions or issues and enjoy the rest of your day :)

    Best regards,
    Yigit

    #727002

    Hi Yigit,

    Here is the reply from their support:
    ___________________________________
    SearchWP does not do anything unless a native search was triggered. I have however had one other ticket for a customer using Enfold who was having a similar issue to this. I came up with a quick fix that should work:
    https://gist.github.com/jchristopher/dce3fa056a06949d059a
    __________________________________

    Their solution works fine. So please keep this thread in mind in case someone else has the same issue.

    Best
    George

    #726682

    Hi,

    Have you tried contacting plugin authors as they should have better insight on what could be causing the issue?
    Alternatively, you can try using this plugin – https://wordpress.org/plugins/relevanssi/. You can find implementation here – http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Best regards,
    Yigit

    Hey!

    Yes, please go to Enfold theme options > Header > Extra Elements and uncheck “Append search icon to main menu”. Then add following code to Functions.php file in Appearance > Editor

    add_shortcode('avia_search', 'get_search_form');
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.only-mobile-menu-search a').removeAttr('href');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');

    then go to Appearance > Menus and add a new Custom Link with # for URL and [avia_search] for navigation field

    Cheers!
    Yigit

    • This reply was modified 9 years, 3 months ago by Yigit.
    #726602

    Please see this thread:

    https://kriesi.at/support/topic/change-tab-style-font-color-body-color-border-color/

    Also, search Google: “change enfold tab color” – you will find many helpful results.

    #726283

    Please support team. Don’t let me search again for a long time to an alternative solution which I do not prefer. My clients are waiting and complaining. This is a bug in Enfold because in my last post, I was asking for help for the conflict between Enfolds “content-section” and IE11. You couldn’t help me. Then I tried to create another solution. But this is also not working well. See this post.

    Greetings from Marcel

    #726244

    Hey boemedia!

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

    @media only screen and (max-width: 1024px) {
    #menu-item-search, nav.main_menu {
        display: block;
    }
    .av-main-nav > li { display: none; }
    }

    Please make sure that > sign is not converted to – http://i.imgur.com/IDXRZQ3.png in Quick CSS field.

    Best regards,
    Yigit

    #726211
    boemedia
    Participant

    Hi,

    On a website I designed in spring this year, the search icon is not displayed on mobile. It’s part of the main menu, but I rather have it separated from the hamburger, instead of being part of the mobile menu.

    How can I display it on mobile again?

    #726116

    Hi there!

    We managed to isolate the issue to SearchWP plugin. Once the plugin is deactivated, all tag urls come up fine.

    Is there anything we should know/do from your end in order for the plugin to work properly with the Enfold Theme?

    Also, in the past, for the SearchWP plugin to work with Enfold Theme ajax search function, we incorporated the code you suggest here: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/

    Best
    George

    #725588
    Jeffrye13
    Participant

    Hello Enfold,

    When searching my site, it does not show any of my pages (index) on my SERP? It just show the name of my magazine and there are no
    “Archives” “About Us” “Contact Us” “Advertise” pages below the listing? Just the name of my site and that is it. It this a short code that is missing? Do I need to add something to enfold to get it to index properly with search engines? Google has something called Rich Snippitts? I am a designer not a developer but Enfold is awesome and so is the site it helped me design. Thank You!

    #725584
    laurel
    Guest

    I love enfold and it is highly recommended, except for one thing. It is very, very square. Is it possible for the page features to be rounded rectangles instead of sharp rectangles? I’m talking about the search button, and menu items.

    #725298
    Resor
    Participant

    Hi,

    I use the enfold restaurant theme and have following questions

    1, I have made a page for the delivery meny and are using the product grid but cant sort my products on that page, all is just together and I want to sort them with category titles and some nice dividers. I have tried to add categories to woocommerce but they dont show on product grid page. It looks like this now https://goo.gl/zMieHO

    2, Is it possible to remove sidebars, search fields and other in bulk on product pages

    3, Is it possible to ad a choice on menu page or checkout where customer can choose pick up or delivery, if not do you know of any plugin that works with enfold that have that option

    #725114

    Hello Enfold Support,

    I would like to place the “login | register” link that I have implemented into my menu between the ‘book now’ button and the ajax search magnifying glass icon.

    I have already inputted the below code into my functions.php file:

    add_action( ‘ava_after_main_menu’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }

    Please let me know how I can tweak the below custom CSS so that this link is placed between the ‘book now’ button and the ajax search magnifying glass icon.

    #header .widget {
    left: 50%;
    padding-top: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    z-index: 999;
    }

    #725070

    my wordpress panel is in a language that I have to be Polish or template while enfold no language preference settings. The only thing that did it, is to replace some of the words from English to Polish php files. I do not know but how and where to replace on the website in the BLOG and in the words of the search results as the screenshot below in red. Any other ideas guys?

    • This reply was modified 9 years, 3 months ago by faceboodka.
    #724949
    roylejohnson
    Participant

    For two days now I have been trouble shooting our website and I cannot get this problem to resolve.

    Our page will not resolve and mobile friendly to the google bot. https://search.google.com/search-console/mobile-friendly?utm_source=mft&utm_medium=redirect&utm_campaign=mft-redirect&id=wGqxZegPicEiXsYhglEAUw

    THOUGH, it does pass the bing bot, and it looks fine on mobile devices.

    I have tried:
    Disabling all plugins,
    Deleting caching plugins and cache folders.

    Various CSS suggestions on the forums. I feel lost at this point and need some help please.

    http://www.interstateroofing.com/

    #724827
    tomerus
    Participant

    Dear Enfold (community)

    Please help. Ive got the latest Enfold running and all works great. Ive installed the Enfold consulting demo and changed it around a bit to my liking. Made some new anchor links and they work great on a desktop browser except on mobile? The menu keeps open in a sidebar and wont scroll down to the section. Or scrolls down a bit and then jumps up again. Now Ive searched for latest threads about this and I think I`m doing everything ok. Latest Enfold is 3.8 right?
    Any iedeas?

    Thanks guys

    #724777

    In reply to: Search widget problems

    I looked at your image, and you are seeing the same thing that I am…BUT…depending on how the user goes about their entry, they can end up with a text list output instead of images meeting their criteria.

    My recollection is that the very FIRST time that I put the Woocommerce Search widget in the footer, nothing showed there except the one box for the product search. I may be mistaken, but that is my recollection. You entered your search criteria in that box and pressed Enter for the search to begin. And then the output was the IMAGES that met the criteria.

    If instead, the only search widget you used was the Enfold Search widget, the output was a LIST in text form (no images).

    I’ve done some additional testing. I did clear the inactive widgets, and it made no difference. The way it is working right now is a combination of the two methods, depending on which button/box you use and the way you go about it.

    If you enter the search criteria where it says product search and then press enter, you get the matching images. If you enter the text in the upper box and then you click on the Search button below, then you get the images as well. BUT…BUT…if you do not enter any text at all and you click the bottom Search button (by accident or whatever), it takes you to a page with another text box for you to enter the search criteria, and then the output is in the text list style…NOT images.

    The text list method is a little amateur looking, on this type of site at least. When you have one search method working one way and then the user goes about it this other way, then it looks like something is not working correctly.

    Can we do something so that no matter what, if I am using the Woocommerce Search widget that the user will ALWAYS get a list of images in their results? See the attached link that compares the two results.

    #724493
    DaraEmerson
    Participant

    Daer Enfold Team,

    Thanks for a solution!

    When searching via TAGS the pages have all the word “Posts” in the upper left corner of page
    how to remove this?

    View post on imgur.com

    Best Regards,
    Dara

    #724442
    Gekko101
    Participant

    Hi Guys,

    Updated to the latest version of Enfold, now the Woocommerce ‘Products’ menu is gone from the admin?

    Need this back ASAP as this is a clients site.

    I searched on the forum and found another issue like this with another user, however no solution was posted?

    Please advise ASAP.

    #724358
    emilgandersson
    Participant

    Hi,
    Love the Enfold theme!
    Is it possible to replace the default search in the header with Algolia search functionality?
    I can see it’s possible to replace it with Relevanssi

    https://li.wordpress.org/plugins/search-by-algolia-instant-relevant-results/

    #724196
    es1979
    Participant

    hello,
    i’ve searched a lot, but found nothing to solve my problem. is there a solution to autoplay the videos in the enfold theme?

    thanks for your help

    #724158

    In reply to: Search widget problems

    Sorry. That is what I get for doing it late at night. I updated private info. As a reminder, I initially tried the Enfold Search and did not care for the output and I removed it. Then I used the Woocommerce Search a few days later instead of that one, and it was working fine. I preferred its output. But I forgot what the difference was between them, so I added the Enfold Search right below it and tried one and then the other to compare results. Then I removed the one for Enfold. However…its text box remained on the screen. I cleared browser cache and that made no difference. The behavior is the same on my iPhone and iPad too, and I cleared cache there too. One thing I did NOT try that I just thought about is clearing the widgets that I no longer use. That shouldn’t make a difference, but I am not going to try it until you have a chance to look at it.

    #724081

    I tried rewriting my request to be more clear. I made it clear to only look at the top section of the screenshots page.

    What I am trying to find out is if the Enfold theme handles headlines for Pages in an unusual manner. I am accustomed to simply entering the headline in the place provided by WordPress and having those headlines show up at the top of the page.

    Normally on both posts and pages, what is written in the WordPress place allocated for headlines, shows up as an H1 for the purposes of SEO.

    I am trying to clarify if that is neither the default on Enfold nor one of the options in settings for Pages (not posts, I realize they are handled differently)

    Here is what I mean by the place allocated for WordPress headlines in this screenshot from the Enfold theme for BertaArt: please see

    Here is an example in a more standard theme for entering the headline and how it appears at the top of the page after being entered.
    Please see the same screenshots blog post.

    It appears that my predecessor decided not to use standard WordPress headlines, choosing “hide title and breadcrumbs” in the Enfold theme settings and put the H1 as HTML code at the top of each body content in pages.

    This is only a factor for Pages. The layout for the blog is DOES use the WordPress headline.

    I am concerned this methodology is creating a double H1 for Google on the Pages in this website. That is because I do have to put something in the place where the headline should go just to manage the page names in the WordPress dashboard.

    This is what happens if I elect to “display only title” The font is not showing as H1. I tried selecting this option both on the header page options for Enfold settings and the options on the sidebar of the page.
    Screenshot in same blog post above

    This is everything currently in Quick CSS. You can see that there is a setting for H1’s and it works in the content body.

    h1 {font-size: 26px; line-height: 1.1em; margin-bottom: 10px;}
    h2 {font-size: 22px; line-height: 1.1em; margin-bottom: 8px; }
    h3 {font-size: 16px; line-height: 1.1em; margin-bottom: 6px;}
    h4 {font-size: 16px; line-height: 1.1em; }
    
    p { font-size: 1.1em;}
    
    .responsive #top #main .sidebar { display: block !important; }
    
    #top .avia-post-nav { display: none; }
    
    .small-preview {background: none !important;}
    
    .html_bottom_nav_header.html_logo_center #top #menu-item-search>a {
      border-color: #fff;}
    
    .socialmedia-buttons {margin-top: 13px;}
    
    .main_color h1 {color: #439AC7;}
    
    #top h2 a {color:#439ac7;}
    
    .wp-caption-text {
    display:block !important;
    font-size:14px !important;
    font-style:bold !important;
    font-style:italic !important;
    margin:0 auto !important;
    padding:3px 10px 5px !important;
    text-align:center !important;
    font-family: “Verdana”, arial, sans-serif !important; }
    #724018
    sergiogarza182
    Participant

    Im trying everything explained on previous threads and documentation pages like: http://kriesi.at/documentation/enfold/custom-social-icons/
    i already manage to put some icon on the footer, but it seems im missing something, im not a programmer but i can search for what is inside the archives i find in “Apperance -> editor”

Viewing 30 results - 4,111 through 4,140 (of 7,495 total)