Viewing 30 results - 2,101 through 2,130 (of 11,217 total)
  • Author
    Search Results
  • #1252813
    Rob Kosinski
    Guest

    I inherited admin duties for a WordPress website set up in 2015. It’s running the Enfold theme 4.3.2. The website appears to work but the backend of the Enfold menu is broken and I can’t change anything. They few options Enfold is showing me do nothing when clicked or changed. Save button stays grayed out.

    Do you have any suggestions or options for me regarding this install. I don’t even know who purchased it for the website. The website running it is in the Private Content box.

    Thanks.

    #1252729

    That plugin is if you want to have more than this line-break button – because now Enfold ( or maybe it is a new thing from WP ) shows a button on visible mode:
    can you see this:

    if you click : Enfold will insert the tags itself ( <br class=”avia-permanent-lb” /> ); switch to text mode then you will see what i mean

    #1252633
    leonardamartinez
    Participant

    Message: Guten Tag Wie kann ich den Standardtext im \”Volle Breite Menü\” für Smartphone ändern (Burger-Menü-Button), in Deutsch erscheint \”Menü\” und ich möchte ihn in eine andere Sprache ändern.

    #1252587
    dlrms
    Participant

    Is there a way to get any ajax load more third party plugins to actually work with Enfold? Need this for category and tag pages with hundreds of posts. Have tried at least 4 different plugins and all failures lead to the theme as actual cause. The respective plugin authors have all redirected me to theme author(s) so hopefully YOU can help.
    So, what selectors does the theme actually use? .pagination clearly fails, not sure where to go or how to resolve this. And just to be more clear, I do not want to show all posts at once because – I have hundreds of posts per category and/or tag. A load more button at end of category/tag page would be more efficient and better for SEO….
    Please advise.
    Thanks!

    #1252559
    angereichert
    Participant

    Hello,
    since the new update of Enfold /Wordpress and woocommerce I get the error message
    “Failed to initialize plugin: avia_builder_button” when creating a new product.
    I know, that it is also due to a plugin “Woocommerce Product Colorizer” which is not updated any more, but vital to our homepage.
    on the console I get an error Tiny mce menu field noch available.
    Our programmer said the incompatibility might be due to a missing update with Java Script / jquery.
    Is there anything you could do to enable me to create new products. (which is vital for the shop before Christmas)
    Cheers

    #1252484

    if you add those tags with custom class they will not be removed!
    <br class="noclear"/>
    same with p-tags

    On Enfold 4.7.6.4 the permanent linebreak seems to exists as a button in the tool-bar
    and it inserts : <br class="avia-permanent-lb" />

    i use for some “extras” this little plugin: https://kriesi.at/support/topic/line-break-not-working-in-front-end/#post-1146117

    #1252478

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 1380px) {
    .page-id-5571 .avia-builder-el-11 .avia-button.avia-size-medium {
        padding: 13px 20px 12px;
    }
    }

    If you need more specific CSS then please try assigning a class to the right column in the element options.

    Best regards,
    Rikard

    So where in the child theme does config-woocommerce/config.php go? I have tried enfold-child/config-woocommerce/config.php, enfold-child/woocommerce/config-woocommerce/config.php and enfold-child/woocommerce/config.php but the site still refers to enfold/config-woocommerce/config.php. Alternatively how do I edit the “Show details” button as I need to replace it with a dynamic custom dropdown menu.

    #1252128

    Hi,

    Please change your code in Functions.php file to following one

    <?php
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    function enqueue_parent_theme_style() {
          wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
    }
    add_action( 'wp_enqueue_scripts', 'enqueue_parent_theme_style');
    
    /* Proper way to enqueue styles and scripts
     */
    function theme_name_scripts() {
    	wp_enqueue_style( 'style-name', get_stylesheet_uri() );
    }
    add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );
    
    function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);
    
    /* Activate Avia debug mode */
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    	return "debug";
    }
    add_filter('avf_title_args', 'avf_title_args_mod', 99, 2);
    function avf_title_args_mod($args,$id)
    {
         if ( $args['title'] == 'Calendar of Events' ) 
         {
            $args['title'] = 'Veranstaltungskalender';
         }
        return $args;
    }
    add_action('tribe_events_single_event_after_the_content', 'tribe_events_single_event_after_the_content_mod');
    function tribe_events_single_event_after_the_content_mod() {
    	echo "";
    	echo do_shortcode("[av_social_share title='Teile diese Veranstaltung' style='' buttons='' custom_class='shareva']");
    }
    add_theme_support('avia_template_builder_custom_css');
    add_filter( 'wc_gzd_revocation_admin_mail', 'my_child_set_revocation_admin_mail', 10, 1 );
    function my_child_set_revocation_admin_mail( $mail ) {
       return  (Email address hidden if logged out) ';
    }
       add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single)
    {
    $args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    $args['heading'] = 'h1';
    }
    
    return $args;
    }
    /* Code zum Loeschen von Veranstaltungen 
    $allposts= get_posts( array('post_type'=>'tribe_events','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }
    	
    	 $allposts= get_posts( array('post_type'=>'tribe_organizer','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }
    	
    	 $allposts= get_posts( array('post_type'=>'tribe_venue','numberposts'=>-1) );
        foreach ($allposts as $eachpost) {
          wp_delete_post( $eachpost->ID, true );
        }    */

    If that does not help, please go to Enfold theme options > Performance tab and toggle “Responsive Images” option and check if that helps.
    As Nikko mentioned, certain image sizes are loading fine but certain are not loading so I believe it might be related to responsive images setting.

    Best regards,
    Yigit

    #1252075
    studiocelsius77
    Participant

    Hey Team – I am wanting to use an Enfold Child Theme to customize the Enfold Theme. I have numerous Enfold Theme settings that I was able to export. As a test I clicked the import button in the Enfold theme settings page and nothing happens. I need to be able to import the Enfold theme settings into the Child theme once it is activated. Any thoughts on what the issue might be? -Paul

    #1252032
    aaravg
    Participant

    Hi,
    I want to create a simple form with name and an upload file.
    Once the file is uploaded then the submit button will be a “Pay” button which will redirect users to payment gateway.
    Is it possible to create such flow with enfold. Once the payment is done then the users will get a mail notification.

    #1252017

    Hi,

    Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:

    button#place_order {
      display: block !important;
    }

    Best regards,
    Rikard

    #1251984
    contentestate
    Participant

    Hi. Please the enfold theme doesn’t seem to respond since the last update. For instance, if I try to change my logo, it doesn’t allow me once I click the button for uploading the logo. The same applies to many other elements. I’m handicapped here and I need urgent assistance. Thank you for your help.

    #1251940

    Hi,
    Thank you for the login and link to your site, I first deactivated the Enfold Theme Options > General Layout > Sticky Sidebar menu option:
    2020-10-10_074228.jpg
    then I added this code to the end of your functions.php file in Appearance > Editor:

    function custom_sidebar_header_sticky(){
      ?>
      <script>
    (function ($) {
      $(window).scroll(function (e) {
        var $sticky = $('.html_header_sidebar #top #header');
        var width = $(window).width()
        var position = ($sticky.css('position') == 'fixed');
        if ($(this).scrollTop() > 100 && width >= 767 && !position) {
          $sticky.css({ 'position': 'fixed', 'top': '-100px' });
          $sticky.next().css('float', 'right');
          $sticky.addClass('fixed_element_style');
        }
        if ($(this).scrollTop() < 100 && position) {
          $sticky.css({ 'position': 'absolute', 'top': '0px' });
          $sticky.removeClass('fixed_element_style');
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_sidebar_header_sticky');

    and now in my test the sidebar header now allows enough scroll to show the mail social button for “tablet” & “desktop”
    Please clear your browser cache and check.

    Best regards,
    Mike

    #1251829
    kosmosdigital
    Participant

    Hi we reached out to WP support regarding this issue we’ve been experiencing when we click and hold elements like buttons or text boxes in editor and try to drag them down the page where scrolling is needed, for some reason it just doesn’t scroll and we have to drop and place, scroll down, pick up again drop and place, scroll, etc… The WP Support checked by logging into our WP and said that on another editor it worked just find and that Enfold uses its own editor and that its some kinda glitch with Enfold. Can you please help?

    #1251767

    In reply to: Mobile Usability issue

    This reply has been marked as private.
    #1251708
    Munford
    Participant

    HI,
    I have a map on my contact page made with the google map element, and one in the footer made with the enfold google map widget, but they look different. Can I get the look of the map on the contact page in the footer map?
    I tried putting this code in in an html block in the footer, which was the right map but it went full width and broke the footer:

    [av_google_map zoom_control='aviaTBzoom_control' maptype_control='' zoom='15' maptype_id='' height='2.5:1' saturation='-50' hue='' google_link='' confirm_button='Click to load Google Maps' page_link_text='Open Google Maps in a new window' google_fallback='' attachment='' attachment_size='' av-small-hide='aviaTBav-small-hide' av-mini-hide='aviaTBav-mini-hide' id='' custom_class='' av_uid='av-spxu7q']
    [av_gmap_location address='Sundevedsgade 2' city='copenhagen' country='denmark' long='12.543785999999955' lat='55.6708671' tooltip_display='aviaTBaviaTBtooltip_display' marker='2111' imagesize='40' av_uid='av-2t1ipy']
    Joshua Tree Photography v/ Fotograf Joshua Gross
    Sundevedsgade 2, 1tv
    1751 København V
    [/av_gmap_location]
    [/av_google_map]

    Can you help me fix this so it will fit in the footer column, or change the stying of the footer widget map?
    thanks
    Nancy

    #1251649

    In reply to: Translate cookie texts

    Hey Victoria,

    unfortunately I have not found an answer to my question. It’s not about the “Learn more” button. I also looked in the file enfold / lang / de_DE.po and couldn’t find these text passages.

    Many greetings,
    Martin

    Hey, I’m looking for help with something… and I’ve always been told to create a new thread for new issues… but I can’t seem to find the “Create New Thread” button.

    Has my account been downgraded or something? I’m a bit confused.

    I have an issue on this page on the site: https://www.bonjiglass.com/shop/

    When you go on the right hand side… to the categories area… its very hit or miss. Sometimes when you click on a category… it works. Sometimes when you search for something… it works. Often time it doesn’t.

    I’m not quite sure why thats happening. I haven’t downloaded any new plugins recently at all… maybe its cause of the Enfold update? Something clashing with the code of the WOOF plugin that I use?

    Please let me know. The login to the site is the same as listed in the Private Content area in the initial post.

    #1251615

    Hi laserblaze,

    Please try to use this plugin: https://envato.com/market-plugin/

    Or you can try to follow these steps to update Enfold manually (make sure to have a backup):

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    5. Log in to WordPress as and Admin.
    6. Install and activate a maintenance plugin and put your site in Maintenance mode.
    7. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button and switch to Enfold or your child theme.
    12. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Best regards,
    Nikko

    #1251407

    hm i can not reproduce your problems: https://webers-testseite.de/vimeo-embed/

    The left one is enfold video alb.
    And the right one is iframe ( but i prefered the responsive setting – on share button you can see options button on top right)

    ( That testpage is on Enfold 4.7.6.4 and WP5.5.1 )

    have you set any Content Security Policy (CSP) or f.e. a plugin which has set it?
    if you are familiar with developer tools have a look to the Console – if there are blocking rules on vimeo sources.

    #1251154
    JantienM
    Participant

    Hi,

    On this page where the events calendar is displayed: https://www.fronikboerderij.nl/agenda/ I want a sidebar on the left, without navigation. I don’t want any content or widget to appear there. BUt now it shows the entire navigation of the website.

    In the settings of Events Calendar I chose under the option “Display” and then “Events Template” for “standard page template”.
    In the Enfold settings I chose under “Sidebars” for a left sidebar on a page and I deselected the button “page sidebar navigation”. But this does not work.

    Somehow Events Calendar seems to choose the template of the archive page instead of the page template. Because when I tweak these settings in Enfold, it has effect. But I don’t know how to get rid of the navigation list on the left side of the page.

    Hope you can help me out with this issue, thanks a lot!

    #1250894
    JamesEisert
    Participant

    Hello,

    I was asked by WooCommerce to contact you. It seems your theme is conflicting with WooCommerce One Page Checkout.

    On mobile, there is a paypal button that is not showing and my products pictures are not showing and I cannot change the quantity or choice of the items.

    This is what WooCommerce replied to me about this.,..

    After taking a look further, it looks like this is caused by an override in your theme’s dynamic_avia folder, which I believe Enfold uses for storing styling, etc.
    I’ve tried overwriting these styles with CSS, but I’ve been unsuccessful in doing so.

    The best option at this point would be to reach out to the Enfold team to see if they can explain why their responsive styling may be overwriting the default styling in WooCommerce’s One Page Checkout.

    I apricate the help

    James Eisert

    • This topic was modified 5 years, 6 months ago by JamesEisert.

    Hi Rikard, i use Chrome. In Chrome i can still not see the theme options after updating Enfold to the latest version.

    But in Edge i can see and work with the theme options!

    When i use a new incognito window in Chrome, and login into WordPress, then i can see and work with the theme options in Chrome.

    Another strange detail:
    When i change a social media profile in the theme options in Edge (and saved it), it seems only to change my page in Edge because it didn’t change my page in Chrome (after refreshing the page). After i opened the theme options in incognito mode in Chrome, it looked like my new social media profile seemed not to have been saved (save-button was blue). After saving the social media profile, it did work in Chrome as well.

    Google Chrome Version 85.0.4183.121 (Official build) (64-bits)
    Microsoft Edge Version 85.0.564.68 (Official build) (64-bits)

    #1250837
    Jarco Penning
    Guest

    Dear support,

    I received an email with the announcement of an update of Enfold. Subject line:

    [ThemeForest] Update available for ‘Enfold – Responsive Multi-Purpose Theme’

    Two things:

    1. clicking the link directs me to a page with multiple options showing 100% EXACTLY the same ENFOLD download. Suggesting the FULL Theme installation, not the UPDATES ONLY.

    2. after sorting the options in the list I concluded I needed to download the FULL theme installation. I pushed the downloaded and unzipped folder via FileZilla to my stage site. Tested it and it works.

    3. Looking in the dashboard of WP themes in my environment I see a simple option at other themes like twenty fifieen, twenty nineteen and twenty twenty:

    “There is a new version available of this theme. Update now”

    This would make my life as a user much more easy. No FTP. No download hassle. No test environment shizzle. Just click a button: Update Now.

    Is there a way to add this feature with Enfold?

    Thanks!
    Jarco

    #1250662
    Trenton Bickel
    Guest

    I paid a company to design my website, and the theme they used is enfold. They recently sent me the updated theme v.4.7.6.3 and I have the updated WordPress v5.5.1 . It is not allowing me to change the Enfold logo on my website whenever I try to add the logo the upload button does not work nor does it let me save at the bottom of the screen. I do not have login information for your website as my website design company I went through will not give me access or give me the registration key for my theme I am using. Please Help.

    #1250613
    Ola Wetterling
    Guest

    Hi,
    I’m using Enfold Child 3.0.1 but my Theme Option menu doesn’t work anymore. The menu folds out but for all options I only see the general option. I can’t get access to Advanced Styling or any of the other options. I know it’s been working before but it’s a long time since I’ve used it. (I have a screenshot of how it looks that I can send to you, if you want)
    Do you know how get access to the options again?
    Web page is http://www.copenpsyk.dk and right know I want to change the colors of the buttons in the top menu.
    And how do I become a member? I don’t think I have a licence key.

    Hallo Sirpa, die Behauptung, dass Enfold so schön schlank programmiert ist kann ich nicht ganz teilen. Programmteile werden geladen, auch wenn diese nicht verwendet werden. CSS ist dadurch rießig. Ohne Tuning und Komprimierung werden zu große Datenmengen geladen. Mobile Ersatzbilder werden seit Jahren gewünscht, kamen aber nie.

    Insgesamt lädt Enfold bei mir immer sehr langsam, nur ein extrrem schneller Server kann das halbwegs ausgleichen. Shared Hosting fällt bei meinen Kunden deshalb oft aus. So sehr ich Enfold mag (Editierebene) es wirkt für mich trotzdem veraltet und die Demo-Templates sind in meinen Augen leider unschön gestaltet und wirken im Vergleich zu allen anderen Themes doch schon sehr veraltet.

    Enfold bleibt bei mir weiter im Rennen für kleinere Neukunden mit großen Wünschen, größere Websites erledige ich mit dem einem anderem ebenfalls beliebtem Builder. Bin seit Anfang dabei, und es hanelt sich um meine persönliche Wahrnehmung. Soll also keine Bewertung sein.

    Cookie-Hinweis mit Dropdownfelder für deteailierte Cookiebeschreibungen wie Borlaps es macht wäre super, Rest habe ich UI-UX-mäßig genau wie bei Borlaps hinbekommen, saß allerdings 2 Tage dran bis ich zufrieden war. Jetzt kann ich das bei anderen Kunden nutzen ;-)

    Auch sind dadurch die Quoten der Akzeptanz wieder über 85%. Fast alle Besucher suchen den grünen Button und haben keine Zeit einzeln was abzuwählen, viele wissen nicht mal was ein Cookie ist und wollen nur schnell zum Inhalt).

    Hat auch viel mit Usability zu tun, deshalb setze ich es so ein: (Buttonfarbe grün, großer Button für “alle akzeptieren” und die anderen Optionen als graue Links drunter). Gestalterisch wie Borlaps eben. Mit CSS, PHP-Functions und den von Enfold gelieferten Einstellmöglichkeiten ist mir eine Lösung gelungen. Eine fertige Lösung Out -Of-The-Box wäre aber schon wünschenswert! Auch was Updates angeht ist dann … eben … saver.

    Fazit: Enfold ist schon gut, Gestaltung find ich altmodisch, erweiterte Funktionen wie Elementer es bietet fehlen. Auch die Aufkklappboxen im Backend, die beim letzten Update dazukommen rauben meinen Kunden viel Zeit. Klar, sieht schlank aus, ist aber Klickarbeit…

    • This reply was modified 5 years, 6 months ago by royaltask.
    #1250246

    Hey GroetenvanMarc,

    You’re still using Enfold 3.8.4 and the latest version is 4.7.6.3.
    Updating via Theme Options won’t work any more since envato has totally removed the use of API keys and now are using tokens.
    Please try to follow these steps to update Enfold (make sure to have a backup):

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    5. Log in to WordPress as and Admin.
    6. Install and activate a maintenance plugin and put your site in Maintenance mode.
    7. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button and switch to Enfold or your child theme.
    12. Remove the maintenance mode then deactivate and remove the maintenance plugin.

    Since envato is not using API key anymore, you will need to register the theme again in order to update via Theme Options, please follow the instructions in our documentation: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Nikko

Viewing 30 results - 2,101 through 2,130 (of 11,217 total)