Forum Replies Created

Viewing 30 posts - 1 through 30 (of 79 total)
  • Author
    Posts
  • in reply to: Measure Enfold Contactform Submissions with GTM #1432929

    The screenshot was of Google Tag Manager (GTM). I really want to use the GTM solution for form submit measuring. Apparently the built in “Form Submission” trigger, does not fire with the Enfold Form, since there is no page reload on submit. A solution would be if I catch the response of the form submission by CSS id in GTM. 2 Problems with this:

    Thank you message code (div id) is very generic
    The code is not very unique <div id="ajaxresponse_1" class="ajaxresponse ajaxresponse_1" style="display: block;"><div id="result_ajax_response_1" class="ajaxresponse ajaxresponse_1"><h3 class="avia-form-success ">Jouw bericht is verstuurd!</h3></div></div> but I can fix this with a Page Patch criterium in GTM.

    Message stays in screen
    The “thank you message” stays in the screen, so if the user accidentily opens the /contact/ page again, the trigger is fired twice and the submits are counted twice as well. Can this be avoided?
    <img src="<img src=”https://i.ibb.co/qsc6cmm/2024-02-04-16-01-13-Clipboard.png&#8221; alt=”2024-02-04-16-01-13-Clipboard” border=”0″ />” alt=”Thank you message” />Thank you message

    • This reply was modified 5 months, 3 weeks ago by envis.
    • This reply was modified 5 months, 3 weeks ago by envis.
    • This reply was modified 5 months, 3 weeks ago by envis.
    • This reply was modified 5 months, 3 weeks ago by envis.
    in reply to: WooCommerce Brands overview page #1346934

    Nikko, that fixed it for me. As I understand correctly both documents used the same CSS Classes and this gave the logo a default color. Thanx a lot!

    in reply to: WooCommerce Brands overview page #1341975

    Nikko,

    This is new for me, are the classes stored inside the SVG-file? I just downloaded them from their respected websites.
    So I have to change them manually? or is there another solution?

    With kind regards,

    Gerben

    in reply to: WooCommerce Brands overview page #1341729

    Nikko,

    The logo of the website has the same colors as the logo of the brand. So that’s why it looks good in your screenshot, but not for the other brand. For the other brandpages the brands logo messes up color of the website logo.

    Read below in private comments.

    Best regards,

    Gerben

    in reply to: WooCommerce Brands overview page #1341554

    Nikko,

    I had to escape the ” in one line of your code:
    echo "<img src=\"{$thumb_src[0]}\" />";

    Then it works, but with 2 major downsides:

    1. Logo is extremely biga (looking into a CSS-fix)
    2. The logo changes the colors of main logo (here the black in de logo is turned into yellow of van der valk logo)

    Screenshot

    Best regards,

    Gerben

    • This reply was modified 2 years, 5 months ago by envis.
    in reply to: WooCommerce Brands overview page #1341553
    This reply has been marked as private.
    in reply to: WooCommerce Brands overview page #1341313

    Nikko,

    The code puts the SVG on the page with size 1 by 1 px.
    <img src="https://www.qsolarpanels.nl/wp-content/uploads/2022/01/Huawei_logo.svg" width="1" height="1">

    So I added some code to make them show:

    /* SVG brands overview */
    div#our-brands-logo {
        margin-bottom: 20px;
    }
    
    div.our-brands-logo img[src$=".svg"] {
        height: 120px !important;
    	width: auto !important;
    }

    The problem is now that the normal categorie show a large thumb above it. How can I show logo, but hide that thumb?

    in reply to: WooCommerce Brands overview page #1340987

    Nikko, I am pretty sure it has something to do with a SVG filetype. So I tried to do something like this: detect the filetype, then return the content of the SVG as source in the page or if PNG/JPG just use normal <img src.
    I don’t have the skills to do this right, but maybe you can make it work :)

    /**
     * Adds logo to brand page
     */
    
    add_action( 'woocommerce_before_shop_loop', 'add_brand_woocommerce_before_shop_loop', 5 );
    function add_brand_woocommerce_before_shop_loop() {
    	global $wp_query;
    	$brand_id = $wp_query->get_queried_object()->term_id;
    	$thumbnail_id = WC_Brands::get_term_meta( $brand_id, 'thumbnail_id', true );
    
            $file_info = pathinfo( wp_get_attachment_url( $thumbnail_id ) );
    
    	if ( $thumbnail_id ) {
    	        if ( $file_info['extension'] === 'svg' ) {
    		        echo file_get_contents( wp_get_attachment_url( $thumbnail_id ) );
                    } else {
    		        $thumb_src = wp_get_attachment_image_src( $thumbnail_id, $size );
    		        echo "<img src="{$thumb_src[0]}" width="{$thumb_src[1]}" height="{$thumb_src[2]}" />";
                    }
    	}
    }
    • This reply was modified 2 years, 5 months ago by envis.
    in reply to: WooCommerce Brands overview page #1340899

    Nikko,

    Notice: Undefined variable: size in functions.php on line 66

    Line 66:
    $thumb_src = wp_get_attachment_image_src( $thumbnail_id, $size );

    Does this have to do with SVG image support?

    • This reply was modified 2 years, 5 months ago by envis.
    in reply to: WooCommerce Brands overview page #1340804

    Nikko, if a product bundle consists of mutiple brands and is included in the brands page, then there will be 2 logo’s above the page.
    Is this something that can be fixed?

    Screenshot of brands page which features product bundles with mutiple brands

    in reply to: WooCommerce Brands overview page #1340593

    Nikko,

    Thank you for your proposed solution. This displays 2 logos on the page and they are below the description of the brand. Can you tell me how I can adjust the code to display the logo above the content?

    Screenshot of the brand page

    in reply to: WooCommerce Brands overview page #1340057

    Nikko,

    I can not filter a dynamic IP. So I have no means of revealing to you this page. But the brands overview page does not show a logo.
    I have created a login for you as a reader so you can view the page. Check private data please.

    With kind regards,

    Gerben

    in reply to: Double title in blog #800523

    Victoria,

    I fixed it. Somehow I hadn’t setup the NEWS page in the Enfold settings.
    Doh!

    Thanks for your help.

    in reply to: Double title in blog #800520

    Victoria,

    I do not understand. The newsarticle http://www.lions-heerenveen.nl/uber-die-grenze/ can not have a working breadcrumb like “home / news / uber die grenze”?

    in reply to: Testimonials not showing #799629

    Nikko,

    That fixed it. I know that putting a space in an anchor is a bad idee (and I didn’t do it), but that shouldn’t cause a site to malfunction like that right?

    Thank you very much :)
    Everything works again!

    in reply to: Testimonials not showing #797301

    I have tried everything by now:

    • Enfold and WP are up-to-date. Even updated enfold folder manually from latest zip
    • Tried removing content of style.css in CSS style sheet, no effect
    • Tried with empty functions.php, no effect

    When I copy all content of the page (CTRL+A CTRL+V in Notepad, I see the text of the testimonials.
    Can you have one more look, this is driving me insane!

    in reply to: Testimonials not showing #773056

    Yigit,

    Removed the entire Enfold theme and replaced it with version 4.05.
    The problem persists.

    I do use a bit of custom code to keep the gallery in view when paginating.
    You guys helped me with this:

    add_action( ‘wp_footer’, ‘enfold_customization_pagination_anchor’ );
    function enfold_customization_pagination_anchor() {
    ?>
    <script type = “text/javascript”>
    jQuery(document).ready(function(){
    jQuery(‘.pagination a’).each(function(i, e){
    var url = jQuery(this).attr(‘href’);
    jQuery(this).attr(‘href’, url + “#portfolio”);
    });
    });
    </script>
    <?php
    }

    Can this somehow influence the Tesitmonial rotator?

    • This reply was modified 7 years, 3 months ago by envis.
    in reply to: Testimonials not showing #767026

    Login information attached in private content

    in reply to: Testimonials not showing #766380

    I deactivated all plugins and still nothing :S
    Any clue?

    in reply to: Facebook pixel and CompleteRegistration javascript #707099

    I fixed it. It was a caching problem :(
    But also the second code needed <script> tags in order to work.

    function facebook_completeregistration(){
            if ( is_page( 291 )) {
    	?>
    	<!-- Facebook Pixel Code CompleteRegistration -->
    	<script>
    	fbq('track', 'CompleteRegistration');
    	</script>
    	<!-- End Facebook Pixel Code CompleteRegistration -->
    	<?php
            }
    }
    add_action('wp_head', 'facebook_completeregistration');

    Maybe this is still useful for other Enfold-users who want to track conversions by adding code to functions.php :)

    in reply to: Icon size in button #703702

    Thank you Ismael,

    That is making the icon + text bigger.
    But I would like to make the icon bigger than the text and keep them both vertically centered.

    Do you know any solution for this?

    in reply to: Icon size in button #702815

    Rikard,

    URL attached in Private Content

    I have created the following CSS to make the icon bigger.

    span.avia_button_icon.avia_button_icon_left {
    	font-size: 36px;
    }

    But as you can see, the vertical allignment is completely wrong.

    in reply to: Icon size in button #702382

    I haven’t implemented it yet on my pages Rikard, since it doesn’t look good.

    I want to increase the icons size in comparison tot the text, but keep the text and icon verticallay in the middle of the button.
    This is what happens if I increase the icon size:
    The image and text don’t vertically align with the button

    • This reply was modified 7 years, 9 months ago by envis.
    in reply to: Google maps nog showing #686104

    Andy,

    Any news on this????

    My customers are very upset with me, and I have no clue what is going on.

    in reply to: Google maps nog showing #682664

    Andy,

    I am trying to tell you that I get different screens when I follow your instruction (http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/).

    This API key does not work, with or without spaces.

    This API-key doesn’t work either!

    Can you please take a serious look at my site. My customer’s are losing faith in my skills and I really can’t afford it to lose them.

    Thank you.

    in reply to: Google maps nog showing #682241

    Andy,

    First I deleted my current projects from the Google API page.
    Then I tried tried to follow your tutorial.
    I was logged in to Google.
    So I followed the link from step 1 of your tutorial.
    But when I clicked “Get a Key” it looked very different from your step 3. (http://imgur.com/a/C9Xrn)

    When I select “Create New Project” it will load for half a minute and give me an API key.
    I paste this API-key, but the Widget still doesn’t load :(
    “Oops! Something went wrong.
    This page didn’t load Google Maps correctly. See the JavaScript console for technical details.”

    PS. When you manually select the api key in your browser and paste it, the key has a trailing space. Your interface doesn’t trim the key.I removed the trailing space myself.

    in reply to: Google maps nog showing #681454

    Andy, FTP credentials attached.

    in reply to: Google maps nog showing #679205

    And the Google Map from ALB is not working either. It fails to receive coördinates for a valid address :(

    in reply to: Google maps nog showing #679203

    No I generate one API-key per domain from different Google Accounts.

    in reply to: Google maps nog showing #679079

    Could something be blocking the API key from being transmitted to Google Maps API?
    Isn’t this a Javascript solution? How can it be blocked?

    I am getting really desperate, as none of the Google Maps widgets currently work.
    My customers start to complain and I understand there complaints.
    There must be some solution to this problem, right?

    HELP!

Viewing 30 posts - 1 through 30 (of 79 total)