Viewing 30 results - 223,171 through 223,200 (of 243,726 total)
  • Author
    Search Results
  • #251578

    In reply to: Icon List Icon Colours

    Hi Andrew!

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

    .alternate_color .avia-icon-list .iconlist_icon, .main_color .avia-icon-list .iconlist_icon {
    background-color: red;
    }

    Cheers!
    Yigit

    #251567

    Hi guys,

    Maybe you can help me now I’ve worked out where the other instances of maps.google.com, that affect the WP Store Locator plugin, are located:

    file affected: wp-content/themes/enfold/framework/php/class-framework-widgets.php
    function I commented out (line 1133 onwards):

    function helper_print_google_maps_scripts()
            {
                $prefix  = is_ssl() ? "https" : "http";
                wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=false', array('jquery'), '3', true);
                wp_enqueue_script( 'avia-google-maps-api' );
    
                $is_widget_edit_page = in_array(basename($_SERVER['PHP_SELF']), array('widgets.php'));
                if($is_widget_edit_page)
                {
    	            wp_register_script( 'avia-google-maps-widget', AVIA_JS_URL.'conditional_load/avia_google_maps_widget.js', array( 'jquery','media-upload','media-views' ), '1.0.0', true);
    	            wp_enqueue_script( 'avia-google-maps-widget' );
    
    	            $args = array(
    	                'toomanyrequests'	=> __("Too many requests at once, please refresh the page to complete geocoding",'avia_framework'),
    	                'latitude'			=> __("Latitude and longitude for",'avia_framework'),
    	                'notfound'			=> __("couldn't be found by Google, please add them manually",'avia_framework'),
    	                'insertaddress' 	=> __("Please insert a valid address in the fields above",'avia_framework')
    	            );
    
    	            wp_localize_script( 'avia-google-maps-api', 'AviaMapTranslation', $args );
                }
            }

    File affected: wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps.php
    Function I commented out (line: 31 onwards):

    function extra_assets()
    			{
    				if(is_admin())
    				{
    					$prefix  = is_ssl() ? "https" : "http";
                		wp_register_script( 'avia-google-maps-api', $prefix.'://maps.google.com/maps/api/js?sensor=false', array('jquery'), '3', true);
    					wp_enqueue_script(  'avia-google-maps-api' );
    					
    					$args = array(
    		                'toomanyrequests'	=> __("Too many requests at once, please wait a few seconds before requesting coordinates again",'avia_framework'),
    		                'notfound'			=> __("Address couldn't be found by Google, please add it manually",'avia_framework'),
    		                'insertaddress' 	=> __("Please insert a valid address in the fields above",'avia_framework')
    		            );
    	
    		            wp_localize_script( 'avia-google-maps-api', 'avia_gmaps_L10n', $args );
    					
    				}
    			}

    After commented out these 2 functions the WP Store Locator plugin now works as it should, but obviously this is a temp fix as I will need to repeat the process after every update. Therefore, now you can see which functions are affected, would it be possible to provide me with some code I can add to my child theme’s functions.php? I know it’s a big ask (or not – not sure how easy it is for you guys!), but this would be a massive help if it’s not too much trouble for one of you php gurus?

    Many thanks

    Matt

    #251562

    In reply to: Footer widget spacing

    Hi!

    Please go to Enfold theme options > Header > Mobile Menu and choose to display at 990px
    This is how it looks on my end on both Chrome and Firefox http://i.imgur.com/sY5BmzY.png
    If you can, please try checking your website on another computer using Chrome

    Regards,
    Yigit

    spf
    Participant

    Hi,

    after updating to enfold 2.6. my menu is broken.
    It should be horizontal but it is vertical.

    Also, if I make changes in Enfold Child Theme Options->header, this changes do not work.
    E.g. I choose sticky header and shrinking header, but the header isn’t sticky and shrinking….
    Changes in the Enfold Child Theme Options->header, are also not displayed in the section “A rough layout preview of the header area”.

    Please help :-)
    Sabine

    • This topic was modified 7 years, 5 months ago by Yigit.
    durkadurka
    Participant

    When the Enfold theme is installed you also get a few add ons in the WP toolbar, ‘theme options’ and some add ons under new… ‘new portfolio article’ etc. Sinch I create this website for a client, who I dont want to f@$k up all kinds of settings, I would atleast want to hide some of them.

    But in which file(files?) can I find how to delete these? I found the function-set-avia-backend.php file has something mentioning the admin bar, but I cant find the exact pieces of code..

    thanks for the help!

    • This topic was modified 11 years, 8 months ago by durkadurka.
    #251534

    What site will enfold you force be in Spanish?

    #251532

    Topic: Icon List Icon Colours

    in forum Enfold
    onlinedesigns
    Participant

    Taking your demo home page as an example – http://kriesi.at/themes/enfold/ – the icon list next to ‘About Us’ when you scroll down – is it possible to have the list icons appear in their colored version rather than greyscale?

    #251526

    That’s great news Peter! Thanks very much for your quick reply. Are you able to start me off in the right path as what I would need to do in order to create a site in Enfold in Arabic language please? Once I am in the right path I should be able to do the rest easily. This is the first time I am attempting a site in (a) different language and (b) with RTL language.

    Thanks a million in advance
    Nader

    #251523
    jmalocid
    Participant

    I have the default WordPress Spanish language, and install the theme enfold me appears in English. How do I get Enfold appears in Spanish?

    Thank you.

    This reply has been marked as private.
    #251483

    Hi~
    Well, I think there’re some bugs in the header setting function like I mentioned above. Even I didn’t put any customized code in the quick CSS section at first, some unexpected errors force me to make some changes… Maybe you could trying to fix it in the next version of Enfold.
    Anyway, thank you so much for your help~^_^/

    #251480

    Hey!

    I temporarily fixed it by replacing this code in enfold/config-templatebuilder/avia-shortcodes/productslider.php:

    
    $ordering_args = $woocommerce->query->get_catalog_ordering_args( $orderBY, $order );
    

    with

    
    $ordering_args = $woocommerce->query->get_catalog_ordering_args( $orderBY, $order );
    			if($orderBY == 'popularity' || $orderBY == 'rating')
     			{
     	    		remove_filter( 'posts_clauses', array( WC()->query, 'order_by_popularity_post_clauses' ) );
     				remove_filter( 'posts_clauses', array( WC()->query, 'order_by_rating_post_clauses' ) );
     			}
    

    I’ll ask Kriesi to fix the issue with the next update.

    Cheers!
    Peter

    #251474

    Hey!

    You modified the header a lot and it is really difficult to keep track of the changes. We can only provide minor aesthetic changes on the support forum. I’m sorry but please hire a freelance developer to polish the modifications on the header. This will save you a lot of time.

    1.) If you want to change the background of the shrinked header when scrolled, use this:

    .header_color.header-scrolled .header_bg {
    background: white;
    opacity: 1;
    }

    2.) Please edit the actual background image to make it transparent before using as the header’s background image. Save it as PNG format.

    Please visit Werkpress for further customization.

    Regards,
    Ismael

    #251470

    Within a text element in the ALB those are the only currently support shortcodes. Since the builder is already using shortcodes to create the content you would need to create additional shortcode on another page and the copy+paste them into the text element.

    Not all elements are able to be nested at the moment which is why only those Kriesi has tested for are available when inside a text element.

    #251469

    Hey!

    Thank you for using the theme and sorry for the delay.

    1.) What do you mean when you say “cannot move the widgets or open them and the sidebars.”? Can you please explain it further?

    2.) Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    3.) Enfold is compatible with theWPML if you’re planning to create multi language setup.

    Best regards,
    Ismael

    #251465

    Hi lombrano!

    Yes, this is correct as in the demo site: http://kriesi.at/themes/enfold/product/zoku-trioquick-pop-maker/ as well as part of WooCommerce’s default output.

    You would need to customize the code output using the functions here to change the layout: http://kriesi.at/documentation/enfold/change-woocommerce-single-product-page-layout/

    This is only a model but its an example of how you can include a sidebar on the right hand side in the single product view. The container wrappers dictate the size of the columns and the php inside the functions is what outputs the product details.

    If you aren’t familiar with what the code sample is showing then your best course of action is to look into a freelance developer from either Codeable or Envato studio since support isn’t able to help with customization like that.

    Regards,
    Devin

    #251457

    Hi!

    Enfold is the first theme which we optimized for rtl languages. You can see i.e a Hebrew rtl website here: http://www.snnlaw.co.il/

    Best regards,
    Peter

    #251451
    This reply has been marked as private.
    #251439
    This reply has been marked as private.
    #251436

    Hey!

    Seems to be an issue with the load-scripts.php WP file and Enfold, try increasing the PHP memory limit:
    http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Regards,
    Josue

    #251428

    I’m not getting all the options when I use the magic wand. I’m only seeing 4 options on the magic wand – content elements: Button, Horizontal Rule, Icon and Notification. All the rest of the options are missing Do you know what might be wrong?

    I would really appreciate any help.

    Thanks,
    Kim

    #251427
    hanlinsg
    Participant

    Hello guys,
    new problem arrises. By the way this problem does not occur with my other sites using Enfold.

    problem

    Please see the image for the problem.

    Thanks a lot!
    Jason

    #251422

    Hi kimmiky!

    No, we don’t have a single source for all of them since they are all available from the magic wand icon when editing a page.

    Cheers!
    Devin

    #251417
    kimmiky
    Participant

    Is there a list somewhere of all the shortcodes for styling in one place.
    It’s taking me forever to decode all the styling.

    Thanks

    #251415

    In reply to: Iconbox color

    Hey!

    First turn on the custom class field for all Avia Layout Builder elements: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Then you can add a class to each icon box to give it a simple background color.

    Cheers!
    Devin

    #251410

    Hi !
    I really don’t know how you see correctly the menu panel …
    I’ve tried on 3 different computer using IE Chrome and Firefox nothing changed i stil can’t create or modify my menu.
    Do you think it is my internet connection or Internet Service Provider that create this kind of problems???
    And what can i do if i’m not able to access this panel … to create my menu in another way.

    Thank you.
    Best regards,

    Mathieu

    #251404

    Topic: Text on Slider

    in forum Enfold
    khedrubje
    Participant

    Sorry for such a nooob question but how did you put text and a button on this slider. I can see you used fullscreen slider with firebug but i can’t see how you have added text.
    Thank you

    http://kriesi.at/themes/enfold/transparent-header/#after_full_slider_0

    #251393

    You are welcome, glad we could help :)

    Regards,
    Josue

    #251367
    boldtranquility
    Participant

    I have a site where the content needs to be dripped (using wishlist member and wp-drip), on the visual aspect of the blog posts/categories and when you add a “blog” section to a “page” I need the default order to be in order

    i.e.

    Post #1
    Post #2
    Post #3

    the way they display by default is
    post #3
    post #2
    post #1

    how can this be changed in the enfold theme?

    found a plugin that works well, I don’t know that I’d recommend this if you already have tons of articles posted, but if you are working on a new site build and can order as you go along, this is great; https://wordpress.org/plugins/post-types-order/

    actually, it doesn’t work… it removes the menus so I’m back to the same problem as before… I need to list the posts in chronological order
    post 1
    post 2
    post 3

    and everywhere they display they have to post in this fashion… whether it be a category page, archive page, blog page or a page with a blog section on it.

    please help

    original post: https://kriesi.at/support/topic/change-blog-post-order/

    #251348
    Anonymous
    This reply has been marked as private.
Viewing 30 results - 223,171 through 223,200 (of 243,726 total)