Forum Replies Created

Viewing 30 posts - 31 through 60 (of 234 total)
  • Author
    Posts
  • in reply to: Uncaught Error: Call to a member function get_cart() #1166518
    This reply has been marked as private.
    in reply to: Cookie in Privacy gives an error (Header already set) #1162520

    Hey Rikard,

    Thanks – I wait and test away when it get released.

    Peter

    in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1114298

    @Basilis
    I am not installing a TEST plugin on a LIVE Webshop that are 3 years old!!

    in reply to: Missing Dependencies #1111568

    Hi
    Victoria,

    Thanks!

    in reply to: Missing Dependencies #1111272
    This reply has been marked as private.
    in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1110993

    Hi

    Some more pictures so you can see that I AM USING the keyword in Title:

    And in the first 3 colums text blogs:

    and as a list of blog posts:

    Netzie

    • This reply was modified 5 years, 5 months ago by Netzie. Reason: Pics
    in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1110989

    Hi
    Maybe you can help me get this … It is tiresome (Yoast)
    [img]https://i.imgur.com/0215cm0.jpg[/img]

    The post is here: https://herbalcenter.dk/ernaeringsrig-morgenmad-undgaa-stress/
    (It’s in Danish :-))

    Hope this can be made compatible

    Best regards
    Netzie

    • This reply was modified 5 years, 5 months ago by Netzie.
    in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1104790

    Hi
    Any news in this issue?
    I also have some capability issues between Yoast and Enfold (I think)
    Content analyse is not 100% correct -. It’s like Yoast can’t see titles in Adv. Layout (Classic editor).
    And the “Internal Link suggestions” tool (Premium Version) have never showed up? (Currently working with Yoast support about this)
    Also I get the “please use your keywords in first paragraf — AND I DID!!!!
    I also often if not always see some completely off topic suggestions … ??

    Hope to hear more…

    • This reply was modified 5 years, 5 months ago by Netzie.
    in reply to: H1 Tags #1100507

    Hi Enfold People!!

    • This reply was modified 5 years, 6 months ago by Netzie.
    in reply to: Updating to Enfold 4.5 and validating Personal Token #1100019

    Hi All
    Just wanted to know what everyone else is doing with the new Envato Key Token thing for your clients?
    Are you just using your own personal key token – so clients can update? and how do you then control access to updates?
    Or do you crate a Envato account for them and control that yourself – or let them?

    I can’t really crack this issue … And I don’t want to manually log in via FTP on all our clients and update every time Enfold releases a new version?
    (And do the “Slider Nagging Fix”? ;-)

    Any ideas or how to thoughts?

    in reply to: Customizing Woocommerce single product product template? #1090949

    Hi Ismael,
    Your magic is great!! Thx.
    The code (striped for the auto-link to wordpress :-) ) does the trick – But when adding options to a product and clicking the cart button now adds the product without options! – So I decided to stay with the move of options and cart.
    Thanks for your time and effort

    Netzie

    in reply to: Customizing Woocommerce single product product template? #1089768

    Hi Ismael,
    They are not willing at all :-(
    Are they any other way to fix or work around this?
    Or should I find another plugin where the plugin author is more forthcoming?

    This reply has been marked as private.

    They are NOT willing to offer any info at all :-(

    This reply has been marked as private.

    Hi Ismael,

    Thanks – I added the code to my functions.php
    But it add that “Add Ons” options as well See this Pic
    Or this for a BIG product with a lot of Add ons :-)

    How can I avoid those and only add the Variation (if any) and the Add to cart (also the “ViaBill – payment info)??
    Thanks for your time

    Peter

    • This reply was modified 5 years, 7 months ago by Netzie.
    in reply to: Customizing Woocommerce single product product template? #1083838

    Hey Ismael,

    Thanks a million…
    Here is what I did… (and it worked for me:
    I added this to my functions.php

    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_before_add_to_cart_form', 'woocommerce_output_product_data_tabs', 15 );
     
    }
    

    But I want more… (Need your magic again)
    I want to add a copy of the Add-to-cart (including the variations (if any) (see picture)
    You can also see a BIGGER products where I have some ADD ONES (WooCommerce Add On plugins here: https://dashcambilkamera.dk/shop/4k-blackvue-dr900s-2ch-dashcam/
    This makes the single product page extra long (under the “fold”) – That’s the reason for moving the Add to Cart button up (as a copy)
    Maybe someone has a better idea? or style??
    See picture here https://imgur.com/xUQ4uO7

    Best regards

    Netz

    • This reply was modified 5 years, 7 months ago by Netzie.
    in reply to: Updating to Enfold 4.5 and validating Personal Token #1058429

    Hi
    I noticed the 22. Jan 2019 update said:
    – improved: Envato Theme update API usage

    Please tell all…? Are we so lucky to revert back to the API that actually worked for me and my clients? Juubiiii

    in reply to: Search Error #1041798

    Hi
    Nope – I didn’t – I did add some code I found on Relevansi’s site

    /**
    * Making Search work better with RELEVANSSI
    */
    
    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_filter( 'relevanssi_modify_wp_query', 'rlv_meta_fix', 99 );
    function rlv_meta_fix( $q ) {
    	$q->set( 'meta_query', array() );
    	return $q;
    }
    

    But no diff…
    I activated relevansi plugin again and tried your code for Enfold – Now search is BROKEN again (With or without the Relevansi code above?? :-(

    Now we are back to the beginning of the error – The Ajax Dropdown works again on https://BizDoktor.dk but the search page shows NADA :-(((
    I have set the “6” into line 1328 and removed all the relevansi scripts/code (yours and the above) in functions.php and disabled relevansi so we have a clean Enfold site (relative clean…)
    No search page result is working (perhaps the update(s) to day did something?
    (I dont plan to update to WP5.0 or Enfold 4.5.1 yet)

    NOW: (Update)
    SEARCH PAGE WORKS!!! Ajax dropdown works? ??? !!! ??? :-)))
    Am I dreaming?
    It must be your magic – only diff is the “6” in line 1328
    No relevanssi – no code in functions.php ?? Pure Kebab ??

    • This reply was modified 5 years, 11 months ago by Netzie.
    in reply to: Search Error #1041212

    Hi Ismael,
    Hmmm you got me thinking…
    I disabled all the plugin that I guessed using AJAX
    Then the search page was NOT EMTY anymore :-)))) But the “Pre find (Ajax) dropdown from the search field” don’t work (the one with pictures inside
    But this is a huge step forward!!! I rather have search results on the search page than “NADA FOUND” :-)
    Strange thing — I tested with 3 and 6 in the edit above
    Both work as described (no dropdown pre-find)
    Back to all plugins active again – (Not the Code Snippet and Relevansi) and the search works so we are 90% fixed with your magic and good work.
    If possible maybe we can get the pre-find with picture to work?
    And you could point me in a direction to edit the search result page to look better? :-)

    in reply to: Search Error #1041207

    Hi Ismael,
    I did the edit to “6” – But it didn’t work :-(
    The Smartlook was just something I tried for a trial period – I took that script off again. Tested again with “3” and “6” in line 1328 but it didn’t work (yet) I am sure you are on the right track :-)!!!
    Feel free to do whatever it takes

    Netz

    in reply to: Search Error #1040248
    This reply has been marked as private.
    in reply to: Search Error #1040070
    This reply has been marked as private.
    in reply to: Search error #1028662
    This reply has been marked as private.
    in reply to: Search error #1027966
    This reply has been marked as private.
    in reply to: Search error #1027597
    This reply has been marked as private.
    in reply to: Search error #1026705
    This reply has been marked as private.
    in reply to: Search error #1026339

    @Ismael
    Makes no diff – I tried all settings in the “Performance” tab (Enfold)

    @goldengate415

    I don’t use any minification plugin or cache that do the same :-(

    in reply to: Search error #1025035

    @Victoria
    Thanks for checking it out – Search for WordPress, WooCommerce or ‘Broken’, also you can see some products in the shop to search for…
    Nothing will be found (only in the quick view when searching in header search but when you press enter – Nada shows up

    @goldengate415
    (if your name is ref. to your area? We could have been old pals – I had some family in Tiburon across the bay with phone number 415-383-4040 I actually went to Dell Mar School in 1979 (8th grade) with Mrs. Patterson as my teacher and mentor. We lived on 42 Lower North Terrace :-)

    I am glad to hear that it’s not just my sites but sad that it hits you as well… I have done a lot of testing and comparing against site that still worked (not upgraded yet due to the new massive change with Envato Personally Token system).
    Hope someone finds the bug fast
    Have a great day and send the big red bridge a hug from me.

    • This reply was modified 6 years ago by Netzie.
    in reply to: Search error #1024433

    CRISIS – DEFCON 5
    I just check my other sites…. all have same sickness – must be me that have done a huge error somewhere?? How could I mess up the basic search function of WordPress?

    For info: the search bar is displaying the search results in the top right hand box but the page displays no results.
    See Snapshot Image

Viewing 30 posts - 31 through 60 (of 234 total)