Viewing 30 results - 3,751 through 3,780 (of 11,211 total)
  • Author
    Search Results
  • #1067012

    Topic: Navigation

    in forum Enfold
    vinayb
    Participant

    Hi there, how can i achieve a menu alignment like this? is there a quick solution in ENFOLD? https://www.screencast.com/t/tfxe4idtY5

    If you see the last navigation item we used as button which we want to float on the right side. Please suggest.

    #1066987

    Topic: Rounded Buttons

    in forum Enfold
    craig_whiteblaze
    Participant

    Hi all,

    I’m wanting round buttons for a site I’m working on and am having no luck applying some custom CSS code that I’ve found in previous searches.

    The button is embedded in a color section, pretty much like the Enfold Construction demo. Likewise, it appears that font size changes to a text block inside the color section aren’t working either, does it have something to do with being embedded in the color section?

    #1066984
    Pixelsaft GbR
    Participant

    Hi @all,
    after we updated to Enfold 4.5.4, the custom text on the submit button from the contact form will not appear.
    That is not a big problemt, but we generally build german sites and at these pages the text at the submit button is still english -> “Submit”. That looks terrible and is not really serious.
    I hope someone can help us. Thanks in advance.

    #1066974
    vilk85
    Participant

    Hello,

    Currently I’m doing some refreshment work on our website and I came across some issues.

    It does happen on some pages not all ( I can not define exactly what causes the issue)

    Problems:
    1. Preview does not load anything just shows loading animation forever.
    2. Update button does the same it turns gray and shows “Updating…” but it never ends.
    3. Can not save Template it shows: Error fetching content – please reload the page and try again
    4. I tried to remove objects from draft to see if anyone causes problems and finally: I could update website and save the draft as template and also I could load the preview but preview showed old version of website ( like no changes have been made at all)

    My guess is that all these issues are caused by same reason.

    What I already tried to do and did not help:
    WP and Enfold updated to latest ver.
    Disabled all plugins.
    Cleared Cache with W3 Total Cache plugin
    Flushed permalinks.

    Please Help

    • This topic was modified 7 years, 1 month ago by vilk85.

    Hi,
    thank you for your reply!

    I’ve checked the credentials, they work.

    I’ve tried changing to twentynineten – the search worked as intended there – and switched back.

    Nope, I wasn’t able to find this by adding the code to functions.php nor functions-enfold.php. This is my functions.php:

    <?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.
    */
    
    // Bringt Widget Area in den Header neben das Logo
    add_action( 'ava_before_bottom_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }
    
    // remove default sorting dropdown in StoreFront Theme
    function avia_woocommerce_frontend_search_params()
    {
    return;
    }
    
    // Button Text beim bestellen
    add_filter( 'woocommerce_order_button_text', 'mmx_order_button_text' );
    function mmx_order_button_text() {
        return __( 'Kostenpflichtig bestellen', 'woocommerce' );
    }
    
    // remove related product on product site
    /*function avia_remove_related_product() {
    remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20);
    }
    add_action( 'init', 'avia_remove_related_product');*/
    
    // Titel auf Produktseite
    add_filter( 'avf_title_args', 'avf_product_titlee', 0, 2 );
    function avf_product_titlee( $args, $id ) {
    	if ( is_singular('product') ) { $args['title'] = get_the_title($id); }
    	return $args;
    }
    
    // add post type product
    add_action('ava_frontend_search_form','ava_frontend_search_form_mod');
    function ava_frontend_search_form_mod()
    {
    	echo '<input type="hidden" name="post_type" value="product">';
    }
    
    add_action('woocommerce_after_add_to_cart_button','cmk_additional_button');
    function cmk_additional_button() {
        echo '<button class="popmake-3546" id="button-angebot" data-do-default="">Ja, bitte senden Sie mir ein Angebot zu!</button>';
    }
    
    add_filter( 'woocommerce_get_price_html', 'custom_price_message' );
    function custom_price_message( $price ) {
      $new_price = $price . ' <span class="custom-price-prefix">' . __('<br> >> JETZT ANSEHEN >>').'</span>';
      return $new_price;
    }
    
    add_filter( 'add_to_cart_text', 'woo_custom_single_add_to_cart_text' );                // < 2.1
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_single_add_to_cart_text' );  // 2.1 +
    
    function woo_custom_single_add_to_cart_text() {
    
        return __( 'In den Warenkorb legen', 'woocommerce' );
    
    }
    
    function ava_woocommerce_after_cart_mod(  ) {
    	echo '<div class="after_cart"><span class="waren"><h3>Bequem und sicher bestellen</h3><br><h4><span style="color: #009900">✔</span> Bezahlung:</h4>Bequem auf Rechnung, PayPal, Sofortkauf oder Vorkasse<br><br><h4><span style="color: #009900">✔</span> Produktion:</h4>Sie erhalten vorab einen Korrekturabzug als PDF oder eine fertige Mustertasse.<br><br><h4><span style="color: #009900">✔</span> Lieferzeit:</h4>Wir brauchen ca. 5 Tage f&uumlr die Produktion nach Druckfreigabe.</span></div>';
    };
    
    add_action ('woocommerce_after_cart', 'ava_woocommerce_after_cart_mod', 100, 0 );
    
    add_action( 'after_setup_theme', 'mmx_avia_woocommerce_settings' );
    function mmx_avia_woocommerce_settings(){
    	global $avia_config;
    	$avia_config['shop_single_column_items'] = 5;
    	$avia_config['shop_single_column'] = 5;
    }
    
    add_action('init', 'avf_move_product_output');
    function avf_move_product_output() {
    	remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    	remove_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
    	add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 5 );
    }
    
    add_action( 'woocommerce_after_shop_loop_item', 'remove_add_to_cart_buttons', 1 );
    
        function remove_add_to_cart_buttons() {
          if( is_product_category() || is_shop()) {
            remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' );
          }
        }
    
    // Magazinartikel mit in Suche aufnehmen
    
    add_filter( 'relevanssi_modify_wp_query', 'rlv_force_post_product' );
    function rlv_force_post_product( $query ) {
        $query->query_vars['post_types'] = 'post,product';
        return $query;
    }
    
    // Display 240 products per page. Goes in functions.php
    add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 240;' ), 20 );
    
    add_filter('comments_open','__return_false', 10, 2);
    
    /*add_action('ava_before_footer','avia_above_footer');
    function avia_above_footer(){
    dynamic_sidebar( 'above footer' );
    }*/
    
    function custom_stuff(){
    ?>
    <div style="display:none">Find this</div>
    <?php
    }
    add_action('wp_footer', 'custom_stuff');
    

    What do we do? :-)

    #1066557

    Hi,

    Thank you for getting back to us. I’m sorry about the misunderstanding. In my previous message I shared a link to the video which explains the whole process but somehow the was missed. Here it is again :)

    1. You need not modify any php file to add the font display property to your theme.

    Edit the font name in the below code and paste the below code to the Quick CSS section in Enfold > General Styling

    @font-face {
      font-family: "YOUR FONT NAME";
      font-display: swap;
    }

    NOTE: To load the main theme js files from child theme please check this link. There is no easy way to load all the main theme php files from the child theme it’s a WordPress limitation. To get around this you can write custom functions. Since this is going to take a lot of time and customization it is out of our support scope and thank you for your understanding :)

    2. We update the theme regularly based on wider acceptance of the features on all modern browsers. You can surely expect this to be included in the future updates but we do not have an ETA on this at the moment.

    3. To host google fonts please check this link.

    4. For icon fonts you can use the following CSS code

    @font-face {
        font-family: 'entypo-fontello';	
        font-display: swap;
    }

    You can also check out this working example that demonstrates different fonts applied

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Let us know if you have any questions we are happy to help you.

    Best regards,
    Vinay

    #1066413

    Yes, this template tool is really useful; but what if you decide to change something about the content afterwards?
    I really hate to advertise paid plugins, but this little tool has saved me a lot of extra work: https://habenicht.io/product/enfold-repeatable-content/
    You will have on dashbord like Portfolio an extra tab. You create your layout and this “repeatable” Content has now a unique ID.
    If you want to place it there will be an extra ALB Button to drag&drop the content. If you change that on dashboard all instances of it will change too !

    #1066349

    Hi Tomas,

    You can adjust it using Quick CSS, located in Enfold > General Styling, just add this code:

    .avia_transform .av_slideshow_full .active-slide .avia-caption-title, 
    .avia_transform .av_fullscreen .active-slide .avia-caption-title {
        visibility: visible;
        -webkit-animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1);
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-caption-content, 
    .avia_transform .av_fullscreen .active-slide .avia-caption-content {
        visibility: visible;
        -webkit-animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1);
    }
    
    .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button, 
    .avia_transform .av_fullscreen .active-slide .avia-slideshow-button {
        visibility: visible;
        -webkit-animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);
        animation: caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);
    }

    You’ll find the 1s which indicates the number of seconds just change it into something like 2s or 0.5s
    Hope it helps.

    Best regards,
    Nikko

    Hey GregDunn,

    Can you try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top .avia-button-fullwidth .avia_iconbox_title {
        -webkit-backface-visibility: visible !important;
    }

    Best regards,
    Nikko

    #1066063
    agencelarsen
    Participant

    Hi,
    the recaptcha plugin you provided seems to have a very low securised implementation. (https://github.com/KriesiMedia/enfold-library/tree/master/integration%20plugins/Enfold/Enfold%20G%20Recaptcha)

    Spam bots can easily reactivate the disabled/hidden submit button without properly validating the recaptcha process.

    Several clients reported us this issue with unwanted porn spams and scams in their emails. Can you dig into this for a quick update?

    Thank you.

    • This topic was modified 7 years, 1 month ago by agencelarsen.
    #1066028

    Hey Chris,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    #top.home .avia-slideshow-button {
        min-width: 180px;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1066017
    Alderliefste
    Participant

    Hi there,

    I tried custom css in the Enfold Child theme to get equal width avia buttons (avia-button). I’ve tried different code in the quick css and in the theme.css (editor) but nothing seems to have effect. I’ve read https://kriesi.at/documentation/enfold/button/ but also that code doesn’t work at maikegerritsen.nl/home. Any tips?

    Kind regards,
    Chris

    #1065959

    Thank you very much, Guenni007, but I tried it and it doesn’t work. I don’t know why. I made all the updates (Enfold, WordPress, Plugins). I have freeicons for mute/unmute buttons. Best regards

    #1065865
    yingyang
    Participant

    We have a video on our homepage playing in fullscreen MUTED using the fullscreen slider module

    We want to allow the visitor to unmute the video if they wish to do so, however the video control from enfold shown are very tiny located in the bottom right corner and disappear as soon as you try to adjust the volume, looks like a bug?

    As a workaround we wanted to have one button play the video in a lightbox window with sound so we added this URL to one of the slider button with this parameter ?iframe=true, but instead of opening in the same window in a lightbox, it opens on a new window, how can we fix this?

    and more importantly, how can we make the mute button more user friendly on the fullscreen slider so we dont need to use the UNMUTE button workaround

    Or is there a different approach you recommend maybe that would be easier to implement and more user friendly?

    • This topic was modified 7 years, 1 month ago by yingyang.
    #1065784

    Hi,
    Thank you for the login, I noticed you have this error on the page:

    Failed to load plugin url: https://www.your_site.org/wp-content/plugins/popup-maker/assets/js/mce-buttons.min.js?version=1.7.30

    Please see the screenshot in Private Content area.
    You are also getting a “mixed content” error for this image:

    /uploads/2018/09/nancy_7532_533x533_cropped-80x80.jpg'

    This content should also be served over HTTPS, please try to manually correct.
    Please see the screenshot in Private Content area.
    I tried to use the Avia Layout Builder Debug tool to find any errors with the shortcode, but it found none.
    Typically this will find most errors, but I have seen times that we never found the error like this, but creating a new template from scratch solved the issue.
    Perhaps testing your other pages with the debugger will help.

    Best regards,
    Mike

    #1065756
    aprons
    Participant

    The checkout process is painfully slow for our customers. From the time a customer clicks the “Place Order” button in the checkout, it takes up to 30 seconds to complete the order. It doesn’t matter if they are paying with a credit card, using a purchase order or the check option, every time it’s a long long delay.

    We have several plug-ins on our live site. However, on our development site we only have 2 plugins and the Enfold theme. The plugins we are using are listed below:

    1. WooCommerce 3.5.4
    2. UPS WooCommerce Shipping Plug-in by PluginHive

    We are using WordPress 5.0.3 with <Enfold Parent 4.5.3 & Enfold Child Theme 1.0

    It doesn’t matter if we are on the LIVE site (lots of plugins) or the DEVELOPMENT site (3 basic plugins), the results are the same … a very long wait between clicking the “Place Order” button and the order confirmation page.

    The only solution I found so far is to add a preloader so at least it looks like the cart is doing something.

    If you’d like to experience the delay I’m talking about, please visit our development site [link provided in private content]
    As I mentioned this site only has the necessary plug-ins and themes to function. Feel free to test the checkout process using Check payment.

    With all my testing, I have narrowed the problem down to one of these 3 things…

    1. Enfold Theme
    2. WooCommerce
    3. UPS Shipping Plugin
    4. Could the size of our database (1.1GB) be related to the delay? Any other idea of what may be causing this long delay?

      Thank you in advance!

    #1065646
    chris
    Participant

    Hello lovely Enfold Team,
    i have a strange Problem:
    Sometimes the second line of toolbars won´t show when i´m in my textblock editor. There is no second toolline and the “toggle toolbar” is also missing. I can´t narrow it down since i have the problem on both languages and can´t see a pattern why its sometimes showing and why not. : /

    Problem

    I did add some code in my functions.php file which i removed days ago because i thought maybe thats the reason, but nothing changed. Sometimes its showing, sometimes not.
    Right now its still commented out.

    //font and fontsize picker @ editor
    if ( ! function_exists( 'wdm_add_mce_fontoptions' ) ) {
               function wdm_add_mce_fontoptions( $buttons ) {
                     array_unshift( $buttons, 'fontselect' );
                     array_unshift( $buttons, 'fontsizeselect' );
                     return $buttons;
               }
    }
    add_filter( 'mce_buttons_3', 'wdm_add_mce_fontoptions' );
    
    //Custom fonts showing in editor
    function load_custom_fonts($init) {
    
        $stylesheet_url = '/wp-content/themes/enfold-child/fonts/custom-fonts.css';
    
        if(empty($init['content_css'])) {
            $init['content_css'] = $stylesheet_url;
        } else {
            $init['content_css'] = $init['content_css'].','.$stylesheet_url;
        }
    		$font_formats = isset($init['font_formats']) ? $init['font_formats'] : 'Trebuchet MS=trebuchet ms';
    
    		$custom_fonts = ';'.'WorstveldSling=WorstveldSling';
    
    		$init['font_formats'] = $font_formats . $custom_fonts;
    
        return $init;
    }
    add_filter('tiny_mce_before_init', 'load_custom_fonts');
    
    function load_custom_fonts_frontend() {
    
        echo '<link type="text/css" rel="stylesheet" href="/wp-content/themes/enfold-child/fonts/custom-fonts.css">';
    }
    add_action('wp_head', 'load_custom_fonts_frontend');
    add_action('admin_head', 'load_custom_fonts_frontend');

    The only thing left in my functions.php file – regarding to my Problem – is this:

    /* Adds Worstveld Sling @ the enfold theme */
    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Worstveld Sling'] = 'Worstveld Sling';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Worstveld Sling'] = 'Worstveld Sling';
    return $fonts;
    }

    Maybe you have a clue for me or can point me in the right direction? :)

    Best regards,
    chris

    • This topic was modified 7 years, 1 month ago by chris.
    #1065423
    dq-8
    Participant

    Hi as i ask in the Comments Section on Themeforrest here are my Questions again.

    1. i want to use the youtube-nocookie URL for using youtube videos in the video element, but after add the link and save setting, include a preview image, only the preview image is shown. By click on the play button only the link to youtube is shown over the preview image and you must click on the link to again to open the video in a new tab.

    Is it possible to release it in this way, that you add a youtube no cookie link to a preview image and if you click on the image the video starts in a lightbox?

    2. i read here some posts about GA and deactivate it. some as i read is that there a a problem to add the opt out in this way
    <a href="javascript:gaOptout()">Disable Google Analytics</a> and it will formated new (as text), aber change something again on the page.

    2a. does this shortcode with the GA switch works propperly?

    so my question is have you (enfold team) a best practice, maybe a tutorial how to add GA GDPR compline to a webproject? include using it anoyminous? i have read something like to add this to the google service section, but i’m not save if this is anoyminous:

    <script type="text/javascript">
    var gaProperty = 'UA-xxxxx-xx';
    var disableStr = 'ga-disable-' + gaProperty;
    if (document.cookie.indexOf(disableStr + '=true') > -1) {
    window[disableStr] = true;
    }
    function gaOptout() {
    document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
    window[disableStr] = true;
    alert('Das Tracking durch Google Analytics wurde in Ihrem Browser für diese Website deaktiviert.');
    }
    </script> 

    because i read that this must look like something like taht:

    <script>
    (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
    (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
    m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
    
    ga('create', 'UA-XXXXXXX-X', 'website.de');
    ga('set', 'anonymizeIp', true);
    ga('send', 'pageview');
    </script>

    or that:

    <script type="text/javascript">
    
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-XXXXXXX-YY']);
      _gaq.push(['_gat._anonymizeIp']);
      _gaq.push(['_trackPageview']);
    
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
      })();
    
    </script>

    thx for a tipp, link or somethings else tom

    #1065182
    rob
    Participant

    Hi there,

    Found a problem with my shopping cart. Not sure if this is an Enfold issue or a Woocommerce issue? When I open my cart on my desktop device and click on “weiter zur Kasse” (should be on English something like “proceed with checkout” I am immediately directed to http://www.mydomain.com/kasse. When I do the same on a mobile device (tried with IPhone SE and with IPad Mini 4) I am directed to http://www.mydomain.com/mein-konto where the user can chose wether he would likes to login – or alternatively can click on “proceed with Kasse without customer account” (sorry – my version is german and I have no idea what the standard text does look like on English…

    This also happens when I click on “zur Kasse gehen” in my menu. Desktop device leads me directly to http://www.mydomain.com/kasse. Mobile devices to http://www.mydomain.com/mein-konto.

    My settings do not allow customers to open an account which should force them to order always as guest. Therefore this site does not make any sense at all. But I am pretty sure that I did not modify this button – nor do I know where to change the link on this button.

    Do you have an idea about this? Is this a theme issue or a WooCommerce issue?

    Thank you!

    #1064851

    Hey FloppySocks,

    There’s little to no risk in doing so, but first you’ll need to go to Enfold > Import/Export > click on Export Theme Settings File button.
    Then switch to the child theme then go back to Enfold > Import/Export > Upload Theme Settings File (upload the settings you just exported) and that should work just fine.
    In case you notice that there are some things that are different from how it used to look, you can just switch back to the Enfold theme and all is good.
    For extra caution, you may also want to create a staging site (a clone to your site placed in your subdomain) and test it there first so you’re live site won’t be affected, here’s a guide on how to do it: https://themeisle.com/blog/wordpress-staging-site/

    Best regards,
    Nikko

    #1064770

    Topic: Google Map problems

    in forum Enfold
    lemads
    Participant

    I can’t get Google Maps to work properly.
    When I write the adress and press the Longitude/Latitude button, I get this message:

    Too many requests at once, please wait a few seconds before requesting coordinates again

    Waiting makes no difference.

    My Enfold version is 4.5.3

    I can see that others have had the same problem, but none of the solutions seems to work

    #1064633

    In reply to: Font and font size

    Hi Audrey2019,

    Go to Enfold > Advanced Styling > (Select an item to customize) choose Widget Links then click on Edit Element button then modify the Font Size and save.
    As for moving the icons, can you give us some mockup or screenshot on how you want them to look like?

    Best regards,
    Nikko

    #1064591

    Hi,
    Sorry my mistake, the color is taken from Enfold Theme Options > General Styling > Main Content > Primary color
    Please explain what color you would like the buttons, and which buttons. We will try to offer some css for those buttons.

    Best regards,
    Mike

    #1064398

    Hey Eric,
    Sorry for the late reply, to change the background color of your coupon field button,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    input#gf_coupon_button.button {
    background-color: #2634ee !important;
    }

    For your first question, there are a lot of different classes for the buttons such as avia-button, big_button, button, buttons, avia_cart_buttons, etc
    While you can change the default colors in the Advanced Styling for buttons, the theme also assumes that you want the transparent buttons to also be included. So the best option is to set your default color and then override the transparent buttons with css so they are a different color. You may find some good tips in our button documentation If you want some help overriding certain buttons, just let us know.

    Best regards,
    Mike

    #1064302

    Topic: icons

    in forum Enfold
    diefleischerei
    Participant

    it would be amazing if you add a twitch and snapchat icon to the pool of buttons in enfold. only a thing for you to think about. thanks for your awesome work :)!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! All the best, Alex

    #1064168

    Okay clear thank you Jordan!

    And where can I change the color of the submitbutton?
    I have used a contact form but the color of the submit button cannot be changed? Or is this defined in the Enfold settings? I can’t find it?

    Kind regards,
    Renate

    #1064041

    Hi,
    The problem is that i can’t save in my theme options. When i press “Save all changes” i receive this message “Saving didnt work!
    Please reload the page and try again”
    I buy latest version of enfold because I think that will resolve my problem, but problem is the same.

    When I receive invoice for this purchase there is a button with 50$ installation and my asking is will this installation help me?

    #1064035

    Topic: Modal window

    in forum Enfold
    Morcy
    Participant

    Hi!

    I want to open a modal window with a “Close” button via text link (like Enfold / Theme Options / Privacy). There are plugins on the internet, but they open the popup automatically when the page starts. But I do not want that. Can someone help me?

    Best regards
    Morcy

    #1063944

    Hi Fabio,

    Please try the following in Quick CSS under Enfold->General Styling:

    .cart-collaterals .cart_totals a.button.alt {
        margin-top: 35px;
    }

    Best regards,
    Rikard

    Hi,

    UPDATE: And you can’t use two onclick attributes on the same button. The code should look like this:

    add_filter('avf_contact_form_submit_button_attr','avia_add_submit_attributes_to_cf', 10, 3);
    function avia_add_submit_attributes_to_cf($att, $formID, $form_params){
    $gaq = "_gaq.push(['_trackPageview', 'UA-98919545-2']);\"";
    $att = "onclick=\"ga('send', 'event', 'Request', 'Send', 'CF_Enfold'); ym(44799976, 'reachGoal', 'contact_form_click_camp'); return true;\" value=\"Order\"";
    return $att;
    }
    

    I’m not sure if it’s going to fire both function but that should be a valid code.

    Best regards,
    Ismael

Viewing 30 results - 3,751 through 3,780 (of 11,211 total)