Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • Hi,

    I also get the error-message ‘A valid URL was not provided’ when trying to update theme via wp panel.

    I also get a 500-error when uploading the ‘enfold-directory’ (extracted) via ftp. The old enfold-version works when I put it back (since the new got me 500-errors) so theres nothing wrong with my uploading via FTP.

    What was the solution for Corly above?

    Thanks in advance.

    Best regards
    Christian

    in reply to: Sidebar layout in a woocommerce single product page #775429

    @mensmaximus Thanks… You might be right. Guess I was just so surprised that I did not have the possibility to make the changes…

    in reply to: Sidebar layout in a woocommerce single product page #775342

    Thanks for both of Your’s reply (both ‘Victoria’ and ‘mensmaximus’).

    Iäm not sure what to do, so I’ll give the supportteam an adminaccount, and hope that there is a way for them to help me adjust my single product page. Or, recommend a plugin or similar that I can use.

    Thanks :)

    in reply to: Show php in page built by Advanced Layout Builder #771140

    Thanks Victoria + Basilis,

    You truly are great. Such a wonderful customersupport. Thanks. I’ve to admit, part of the question was (and some parts still are) due to my incompetence. My apologies.

    I think I found a possible answer. I created parts of the problem myself when I created my own product-page. Cause, creating an productpage of my own, with my limited understanding of wp/php, made me disable parts that my other features that the plug-in Woocommerce Custom Fields needed.

    What I didn’t know is…
    1. The output of the values I made in product properties (in the plugin Woocommerce Custom Fields) don’t show in a layout I’ve created with the Advanced Layout Builder within the Enfold theme.
    2. I’ve also did not understand that I need to make the property public AND have a value within the property.

    So, now, I’ve added som text into a few properties AND made them properties public AND created a product that uses the default-template within WooCommerce.

    So, now I see the values, in other words I see the output I wanted. I still (I’m a demanding person, I know) would like the output to show in my custom template, in other words, I would like to use my custommade producttemplate when I do product-imports via the plugin WP All Import.

    So, to summarize, for those interested.

    1. Enfold is great. Truly great theme and support.
    2. Plugin Woocommerce Custom Fields gives you the chance to add extra fields for both frontend + backend.
    3. Plugin WP All Import makes it possible to import and update your product via for example a Google spreadsheet. The plugin can even identify the custom fields created by the plugin Woocommerce Custom Fields.

    The only caveat, is… that all this happens within the standard default product layout. No offence, but I’d love to have the same possibillities within my custommade producttemplate.

    Victoria and Basilis, thanks again. You can close this topic.

    in reply to: Show php in page built by Advanced Layout Builder #769807

    Thanks for Your reply…

    I understood that it might have something to do with security. But then I just don’t understand how one is supposed to ‘write/show’ the values from the fields created by the plugin ‘Woocommerce Custom Fields’. It seems strange to be able to create data to put in tables etc as example, and then not have the possibility to show this data on my site.

    It’s not your fault at all, I’m just thinking out loud.

    Is there any other solution? What I want to do is…
    1: Use the fantastic Theme Enfold [check]
    2: Add WooCommerce [check]
    3: Create custom productpage in Enfold [check, did that via Advanced Layout Builder]
    4: Make my custom productpage the default productpage [not succeded]
    5: Create custom dataproperties per product [check, via Woocommerce Custom Fields]
    6: Make my custom dataproperties viewable on my productpages [not succeded, cause php is not allowed]
    7: Import productdata from Google spreadsheet to create products [check, via plugin WP All Import (great plugin bu the way)]

    I understand this is not on Enfold theme to solve. But I guess that my problem is a quite common one. Pretty many will wanna create their own product-pages. But why do that if it’s hard (impossible?) to make this custom product-page the default template, and for plugins like WP All Import to import data to that specific template, instead of the out-of-the-box-template.

    Thanks for your time :)

    in reply to: Show excerpt on Product layout on overview pages #755898

    Hi again…

    I found the solution, here in the forum (https://kriesi.at/support/topic/woocommerce-short-description-not-displaying-correctly-on-category-page/). Sorry if I wasted someones time.

    I pasted the following code into the ‘functions.php’:

    add_action( 'woocommerce_after_shop_loop_item_title', 'avia_category_page_new_div', 20);
    
    function avia_category_page_new_div() {
    	global $post;
    	$desc = '<div class="category-desc">' .apply_filters( 'woocommerce_short_description', $post->post_excerpt ). '</div>';
    	echo $desc;
    	
    	global $product;
    	echo $product->list_attributes();
    }

    Sending a big thanks to ‘Zimbo’ https://kriesi.at/support/profile/jacksgallery/ for posting the solution.

    Best regards
    Christian

Viewing 6 posts - 1 through 6 (of 6 total)