Viewing 30 results - 4,201 through 4,230 (of 7,495 total)
  • Author
    Search Results
  • Hi RebeccaMontana!

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

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        color: black !important;
    }

    Best regards,
    Yigit

    #715025

    In reply to: Hide some content

    Hi,

    Please go to enfold/includes/error404.php file and find following code and remove it

    <div class='hr_invisible'></div>
    
    <section class="404_recommendation">
        <p><?php _e('For best search results, mind the following suggestions:', 'avia_framework'); ?></p>
        <ul class='borderlist-not'>
            <li><?php _e('Always double check your spelling.', 'avia_framework'); ?></li>
            <li><?php _e('Try similar keywords, for example: tablet instead of laptop.', 'avia_framework'); ?></li>
            <li><?php _e('Try using more than one keyword.', 'avia_framework'); ?></li>
        </ul>
    
        <div class='hr_invisible'></div>
    
        <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>
    
        <?php
        the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404',
                'before_widget' => '<div class="widget avia_combo_widget">',
                'after_widget' => '</div>',
                'before_title' => '<h3 class="widgettitle">',
                'after_title' => '</h3>'
            ));
            
        do_action('ava_after_content', '', 'error404');
        ?>
    </section>

    Best regards,
    Yigit

    • This reply was modified 9 years, 4 months ago by Yigit.
    #714907
    Boria20000
    Participant

    Hello,

    when i search google for http://www.newyorkpartybuslimos.com the search returns unwanted content – how to prevent below from appearing on google search results – thank you !!!

    Index of /wp-content/themes/enfold/framework
    http://www.newyorkpartybuslimos.com/wp-content/themes/enfold/framework/
    Parent Directory · avia_framework.php · css/ · error_log · images/ · js/ · php/. Apache Server at http://www.newyorkpartybuslimos.com Port 80.
    Index of /wp-content/themes/enfold/framework/images
    http://www.newyorkpartybuslimos.com/wp-content/themes/enfold/framework/images/
    Index of /wp-content/themes/enfold/framework/images. Parent Directory · colorpicker/ · icons/ · layout/. Apache Server at http://www.newyorkpartybuslimos.com Port 80.
    Index of /wp-content/themes/enfold/framework/css
    http://www.newyorkpartybuslimos.com/wp-content/themes/enfold/framework/css/
    Parent Directory · avia_admin.css · avia_colorpicker.css · avia_sidebar.css · conditional_load/. Apache Server at http://www.newyorkpartybuslimos.com Port 80.
    Index of /wp-content/themes/enfold/framework/images/layout
    http://www.newyorkpartybuslimos.com/wp-content/themes/enfold/framework/…/layout/
    … menu-bits.gif · select.png · select_colorpicker.png · sort_arrow_down.png · transparency.png. Apache Server at http://www.newyorkpartybuslimos.com Port 80.

    #714599

    I don’t think the code in this thread should help my problem, what should it do ? I can’t see the purpose…

    Here’s my functions.php code, maybe some lines are not useful and make errors…
    <?php
    add_action( ‘wp_enqueue_scripts’, ‘my_theme_enqueue_styles’ );
    function my_theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘enfold-base’, get_template_directory_uri() . ‘/css/base.css’ );
    wp_enqueue_style( ‘enfold-custom’, get_template_directory_uri() . ‘/css/custom.css’ );
    wp_enqueue_style( ‘enfold-dynamic-css’, get_template_directory_uri() . ‘/css/dynamic-css.css’ );
    wp_enqueue_style( ‘enfold-grid’, get_template_directory_uri() . ‘/css/grid.css’ );
    wp_enqueue_style( ‘enfold-layout’, get_template_directory_uri() . ‘/css/layout.css’ );
    wp_enqueue_style( ‘enfold-print’, get_template_directory_uri() . ‘/css/print.css’ );
    wp_enqueue_style( ‘enfold-rtl’, get_template_directory_uri() . ‘/css/rtl.css’ );
    }

    //set builder mode to debug
    add_action(‘avia_builder_mode’, “builder_set_debug”);
    function builder_set_debug()
    {
    return “debug”;
    }

    add_filter( ‘avf_ajax_search_function’, ‘avia_init_searchwp’, 10, 4 );

    function avia_init_searchwp( $function_name, $search_query, $search_parameters, $defaults ) {
    $function_name = class_exists( ‘SearchWP’ ) ? ‘avia_searchwp_search’ : $function_name;
    return $function_name;
    }

    function avia_searchwp_search( $search_query, $search_parameters, $defaults ) {
    $searchwp = SearchWP::instance();
    $engine_name = ‘default’; // you can swap in your Supplemental Search Engine name
    parse_str( $search_query, $output );
    $search_string = isset( $output[‘s’] ) ? sanitize_text_field( urldecode( $output[‘s’] ) ) : ”;

    // limit the results to 5
    function avia_searchwp_search_num_results() {
    return 5;
    }
    add_filter( ‘searchwp_posts_per_page’, ‘avia_searchwp_search_num_results’ );

    $posts = $searchwp->search( $engine_name, $search_string );
    return $posts;
    }

    add_filter(‘avf_ajax_search_function’, ‘avia_init_relevanssi’, 10, 4);
    function avia_init_relevanssi($function_name, $search_query, $search_parameters, $defaults)
    {
    $function_name = ‘avia_relevanssi_search’;
    return $function_name;
    }

    function avia_relevanssi_search($search_query, $search_parameters, $defaults)
    {
    global $query;
    $tempquery = $query;
    if(empty($tempquery)) $tempquery = new WP_Query();

    $tempquery->query_vars = $search_parameters;
    relevanssi_do_query($tempquery);
    $posts = $tempquery->posts;

    return $posts;
    }

    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’);
    ?>

    #714592
    manojvinod
    Participant

    Hi Team,

    I am looking at the search console & found that there are 28 Errors with 404. None of the pages are created by me.
    Please let me know, how do I remove/delete these pages from the site:

    1 http://10elite.com/wp-content/themes/enfold/framework/
    2 http://10elite.com/tag/nice/
    3 http://10elite.com/index.html
    4 http://10elite.com/tag/some/
    5 http://10elite.com/portfolio/masonry-portfolio/
    6 http://10elite.com/blog/blog-single-author-full/
    7 http://10elite.com/shortcodes/tabs/
    8 http://10elite.com/shortcodes/layer-slider/
    9 http://10elite.com/shortcodes/columns/
    10 http://10elite.com/shortcodes/animated-image/
    11 http://10elite.com/shortcodes/images-with-hotspots/
    12 http://10elite.com/2012/01/14/this-is-a-nice-post/
    13 http://10elite.com/shortcodes/iconbox/
    14 http://10elite.com/shortcodes/hr/
    15 http://10elite.com/2010/05/07/advanced-jquery-functions/
    16 http://10elite.com/shortcodes/toggles-accordions/
    17 http://10elite.com/2010/08/09/custom-lightbox-click-the-image/
    18 http://10elite.com/2011/01/28/another-title-for-our-pretty-cool-blog/
    19 http://10elite.com/best-laptops-under-300/_wp_link_placeholder
    20 http://10elite.com/2009/03/07/html-styles/
    21 http://10elite.com/2011/02/17/aenean-vulputate-eleifend-tellus-aenean-leo-ligula/
    22 http://10elite.com/2010/12/28/this-is-a-test/
    23 http://10elite.com/2011/02/12/lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit-aenean-commodo-ligula-eget-dolor-aenean-massa/
    24 http://10elite.com/pages/landing-page/
    25 http://10elite.com/blog/page/2/
    26 http://10elite.com/pages/blank/
    27 http://10elite.com/pages/services/
    28 http://10elite.com/author/admin/page/2/

    Also, please guide me how do these pages come up & what measures we need to take so such pages are not created further.

    Thanks
    Manoj K
    +91-9004343600

    #714165
    roamingk
    Participant

    Hi,

    Am using enfold and map list pro.
    https://codecanyon.net/item/map-list-pro-google-maps-location-directories/2620196

    When I try to search and add an item using map list pro, the search box does not generate an addres.
    When I remove the enfold theme, the plugin works. The plugin works rendering maps I add in with Lat and Long, but the search funcionality is something that makes it worth having.

    Maybe there is a conflict with the enfold google map box. Is there a way to disable that or remove any code that might cause a conflict

    #713966
    dimitrilpc
    Participant

    Hello Enfold’s team,

    I would like to know how to remove the “Shop” in my woocommerce breadcrumbs. I installed the demo shop in localhost and I would like something like this :
    Home > Product Category > Product

    instead of something like this :
    Home > Shop > Product Category > Product

    I searched for some snippets and in some topics but I couldn’t find one :(.

    Thank you in advance for your help,
    Dimitri.

    #713774
    kbarranco
    Participant

    Hi–
    I want to create a page with a search bar, then have results filter by lowest price. I don’t mean datafeed from external sites, my client wants to input the info herself keeping the search local.

    I tried out plugins including WPsearch and the instructions from Enfold to add code to functions.php, but it broke my site.

    any suggestions?

    https://postimg.org/image/jsrnp6lw5/

    #713672
    wpsonja
    Participant

    Hi, I’m working with Enfold the first time, still on local server.
    I placed a product search field in the secondary menu. Now I want to customize the look: the submit button should be to the right of the input field and not be under it, without space between. Additional the color should be green, not the default color. I hope it’s clear what I mean. Can I manage that with Quick CSS?

    #713653

    Hi frankeee!

    Thank you for choosing Enfold again :)
    Please add following code to Quick CSS

    #menu-item-search-mod {
        height: 40px;
        line-height: 40px;
        top: 0;
    }

    Regards,
    Yigit

    #713607
    ouranos3
    Participant

    Hi, Enfold support team,

    A basic question, but i didn’t find the answer searching the forum.
    When using an Avia slider (Easy, Full-width, fullscreen), is there a big difference regarding browsing comfort (and only browsing comfort) if i’ve got 1 slide (say 200ko) or 10 slides (2Mo) ?
    Or is the loading method “softening” the user experience, when files size is much bigger ?

    Thanks for your help and your fine work.

    Hey kprice2690,

    Pleases try using this more advanced search plugin – https://wordpress.org/plugins/relevanssi/
    You can find Enfold implementation here – http://kriesi.at/documentation/enfold/use-relevanssi-in-search-instead-of-the-default-search/

    Best regards,
    Yigit

    #712897

    Topic: YITH AJAX Search

    in forum Enfold
    kylebarnick
    Participant

    Does anyone know if Enfold is compatible with the the Ajax Search From YITH. I am trying to integrate it and am having the worst time ever and YITH does not want to support it.

    #712845
    PolatEroglu
    Participant

    Hi,

    I get in the Search Console 2 Messages:
    1. wp-content/themes/enfold/framework/ 403
    2. wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/ 403

    What is the Problem and how can I fix it? Has it Effects on the Blog Posts? Because a few Blog Posts are disappear sometimes from the Google Index. When I submit them manually they are a few hours in the Index and than they disappear.

    A note: I use the caching Plugin, Cachify. Can be this the Problem?

    #712690
    elohimguy
    Participant

    Hi

    I registered a custom taxonomy which worked well in my previous theme.
    After changing the theme to Enfold, custom taxonomy archive page results in 404 error.

    I declared the taxonomy as follows in the functions.php file:

    function add_custom_taxonomies() {
      // Add new "Area" taxonomy to Posts
      register_taxonomy('speciality', 'post', array(
        // Hierarchical taxonomy (like categories)
        'hierarchical' => true,
        // This array of options controls the labels displayed in the WordPress Admin UI
        'labels' => array(
          'name' => _x( 'Specialities', 'taxonomy general name' ),
          'singular_name' => _x( 'Speciality', 'taxonomy singular name' ),
          'search_items' =>  __( 'Search Specialities' ),
          'all_items' => __( 'All Specialities' ),
          'parent_item' => __( 'Parent Speciality' ),
          'parent_item_colon' => __( 'Parent Speciality:' ),
          'edit_item' => __( 'Edit Speciality' ),
          'update_item' => __( 'Update Speciality' ),
          'add_new_item' => __( 'Add New Speciality' ),
          'new_item_name' => __( 'New Speciality Name' ),
          'menu_name' => __( 'Specialities' ),
        ),
        // Control the slugs used for this taxonomy
        'rewrite' => array(
          'slug' => 'specificarea', // This controls the base slug that will display before each term
          'with_front' => false, // Don't display the category base before "/locations/"
          'hierarchical' => true // This will allow URL's like "/locations/boston/cambridge/"
        ),
      ));
    }
    add_action( 'init', 'add_custom_taxonomies', 0 );

    Is there a way to correct this issue?
    (One more question: Using custom taxonomy will affect the loading speed of the site? If then, I will just remove them.)

    • This topic was modified 9 years, 4 months ago by elohimguy. Reason: Add one more question
    #712458

    In reply to: Blog Post

    Hi,

    If I understand the question correctly, every site will have different memory demand. That’s why WP allows to increase or decrease memory in the administration area from the WP_MEMORY_LIMIT by defining WP_MAX_MEMORY_LIMIT.

    WP Codex: https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    The more functions you use in WP, the more php memory limit you’ll need. Unfortuntely we can’t change or limit our theme, just because your host is not available to increase php memory limit for your current settings. If you want to take advantage of such an advanced theme like Enfold, then you need to search a host, which can handle it properly.

    Best regards,
    Andy

    #712408
    richardbeatty
    Participant

    Hi

    Please give an example CSS that would change the vertical position of

    (1) button

    (2) an icon

    within a color section.

    I’ve searched high and low and was surprised this question hasn’t been asked before on enfold. I’m sure the answer would be useful to others.

    Please just post an example in px and I can change it around.

    That would be very much appreciated.

    Thankyou again!

    Richard

    #712400
    Maja
    Participant

    Dear Enfold-Team,

    After a view changes, my font-sizes which I defined in the enfold settings are not working anymore.

    I updated to php7 and I switched to https. right after this changes everything works fine. After a view days I notized, that my font-sizes are not proper working anymore, and I can´t found the error.

    I tried several things like “Search and replace” but the links looks fine. I also tried to save again the settings in “advanced styling” and in “custom css”. Nothing worked.

    Have you an Idea where the problem is?

    Thank you for your help!

    • This topic was modified 9 years, 4 months ago by Maja.

    I also wanted to chime in and say I’m getting similar URL queries in Search Console. I’m also using the Enfold theme. I have used the robots file to block these search results but am still getting these 404 errors. It would be best to get rid of the bad code (as suggested by fromcouch) to allow Google to crawl the site more efficiently. In my opinion, the removal tool should not be used to get rid of crawl errors (there is even a disclaimer at the bottom of the help page that says not to use it for this).

    premedia
    Participant

    http://screencast.com/t/BDsh4Lff

    I want to remove “Home” from the browser tab if the home page Title is “Home”. This is how it works on my other non-enfold WordPress website as default.

    If I leave Enfold page title as blank and also blank slug then wordpress assigns a random slug numbering – so I can’t get around it like this.

    There must be a simple way to not have Home showing on the browser tab? I tried searching the forum but nothing showed up.

    Thanks for your help.

    Pete

    #711998

    Hi,
    WP Rocket are still looking at this issue.
    In the meantime, it seems that it is connected to the search icon in the menu. There is no jumping when the search is disabled in Enfold.
    Perhaps someone here can look at this from the Enfold perspective?
    Thank you and kind regards
    Michael

    promhock
    Participant

    Hi enfold-team,

    I searched for my question, but could not find some answer.
    I builded an element template which is now showed in the right upper corner in “Templates”.
    Now I would like to use this in some already prepared page with old content of old elements.
    When I push this “Templates” and I choose my template to put it on the page its putted
    behind the last element of this page.
    This makes sense so far.
    Now, if I have about 10 or 20 older elements which I want to remove to use the template
    instead of them.
    Is there a chance to remove all old elements at the same time (with one wipe), something
    like a “clear page” but to keep the Parent and so on…?
    (instead of deleting each element by clicking on its “x”)

    Thanks
    promhock
    (schubi)

    #711855

    Hi enfold-team,

    maybe the content I have been searching for is just dynamic visible because it’s the “News” page.
    My irritation came from the possibility to edit the other pages and when I looked at this page I
    did not see any content and I could not find the point how to edit this “News” page…
    Now I solved it else.

    Greets
    promhock
    (schubi)

    #711795

    Hey Siracher!

    Thank you for using Enfold.

    Where should we see this animation? Could you please provide a screencast or a screenshot of it? I searched for the “blockOverlay” or “blockUI” container but I can’t find it.

    Regards,
    Ismael

    Hi kprice2690!

    Thank you for using Enfold.

    Could you please provide a screenshot of the issue? Or a step by step instruction on how we can reproduce it? An example of the “keyword” that we have to search will help.

    Regards,
    Ismael

    #711507

    Hey JantienM!

    Thank you for using Enfold.

    I tried to login to the site but I got the following error:

    Uw WordPress admin is beveiligd door KeurigOnline. Ga naar deze pagina voor meer informatie of ga naar DirectAdmin > WPGuard Gateway om u zelf toegang te verschaffen tot de wp-admin. Heeft u vragen of problemen? Bel dan onze helpdesk.

    Please follow these steps.

    1.) Go to the LayerSlider WP panel then look for the Google Fonts tab.
    2.) Search for the Alegraya font, toggle the font weights then add it.
    3.) In the slider, edit the layer then go to the Styles panel. Set the Font > Family to “Alegreya”.
    4.) If you want to specify the font weight, add it in the Custom CSS field of the Styles panel.

    Cheers!
    Ismael

    #711425

    Topic: Layer Slider Problem

    in forum Enfold
    PolatEroglu
    Participant

    Hi,

    In the Google Search Console, It get the following 403 Code:

    wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/

    What does it mean?

    #711103

    Hi, I wrote the code I found on this post :https://kriesi.at/support/topic/search-icon-disappears-on-mobile-after-enfold-update-3-1-3/
    And I desactivated my child theme and there was no search box on mobile.

    Louis

    #710675
    JantienM
    Participant

    Hi,

    I have searched the forum how to add a Google webfont to the LayerSlider and found some solution, but they all didn’t work for me. I must say, I’m new to using Google Webfonts but what I understand is that I do not have to set the stylesheet link or @import link to the head file.

    I tried:
    – Making a class inside the Slide Layer under the Attribute tab.
    – Putting the @import link to the Quick CSS area of the “fonts settings” in the Enfold theme options.
    – Making a class in the Custom CSS Field of the Slide Layer under Styles tab

    What I find confusing in the other threads about this subject is the use of all the names like custom CSS and Quick CSS but it is not mentioned WHICH one exactly (in the theme options or in the Layer Slide options or the LayerSlider general options.

    Hope someone can help me out! Thanks a lot! Jantien

    • This topic was modified 9 years, 4 months ago by JantienM. Reason: text error
    #710468
    jochems
    Participant

    Hi,

    After installing the enfold theme my server is getting very slow. After some research the error logs where over 50GB…

    I installed a new version of Enfold en uploaded it via FTP. Directly after I activate the theme the troubles start.

    My server is running Plesk Onyx and I’ve tried multiple php versions but all give the same result.

    Any clue about what the problem could be?

    Kind regards,

    Jochem Oldemans

Viewing 30 results - 4,201 through 4,230 (of 7,495 total)