Viewing 30 results - 1,621 through 1,650 (of 16,892 total)
  • Author
    Search Results
  • #1395025

    Hey marxsvjetlana64,

    Thank you for the inquiry.

    This is possible but you have to modify the enfold\config-templatebuilder\avia-shortcodes\gallery_horizontal\gallery_horizontal.php file, around line 761, look for this code.

    $img_tag = "<img class='av-horizontal-gallery-img' width='{$img[1]}' height='{$img[2]}' src='{$img[0]}' title='{$title}' alt='{$alt}' />";
    					$img_tag = Av_Responsive_Images()->prepare_single_image( $img_tag, $attachment->ID, $lazy_loading );
    
    					$output .= $img_tag;
    

    Below, add this.

    	$output .= $img_tag;
                        $caption = wp_get_attachment_caption($attachment->ID);
    
                        $output .= "
    <div class='av-image-caption'>";
                        $output .= $caption;
                        $output .= '</div>
    ';
    

    Then add this css code to adjust the position of the caption container.

    .av-horizontal-gallery-wrap .av-image-caption {
        position: absolute;
        bottom: 50px;
        z-index: 100;
        left: 0;
        width: 100%;
        padding: 50px;
    }
    

    Best regards,
    Ismael

    hi Ismael,

    so, when i copy that “page.php” over, the page looks like a normal page using the default template.

    so i commented out the “header” & “footer” commands. when i preview that, it‘s just blank. it’s not even showing content from the test page.

    how do i get it to utilize page/post contect?

    also, if i remove the header to build my own, how can i utilize a separate Menu from the Appearance > Menus section?

    additionally, i don’t know where to add the usual html/css code in or around the php code. where do i add the html, head, & body sections?
    won’t i need those to change the background image, content box size, etc etc?

    here’s that “page.php” code for reference…

    // https://pastebin.com/PrzbXrUK

    Hi yundian,

    The code is in line 350 (it’s in the middle of the code posted by Ismael):

    if( ! empty( $cats ) )
    {
    	$cat_output .= '<span class="blog-categories minor-meta">';
    	$cat_output .=		trim( $cats );
    	$cat_output .= '</span>';
    	$cats = '';
    }

    The same problem for grid post, how to totally remove the category:
    Please try to add this filter in your child theme’s functions.php file:

    add_filter("avf_postslider_show_catergories", function($display) {
       $display = "no_show_cats";
       return $display; 
    }, 10, 1);

    and add a box shadow around the single post column
    Please add this CSS code in Enfold > General Styling > Quick CSS:

    #top .avia-content-slider .post-entry {
        box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
        padding: 0 20px 20px;
    }
    
    #top .avia-content-slider .post-entry .slide-image {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
        max-width: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    Hi,
    Thanks for the feedback, for some reason your post on the 17th didn’t show on my feed so I’m glad that you added another post.
    Thanks for the explanation, so originally you had created products with the Advanced Layout Builder and now you are going to import 2k more products in bulk which will make them default Woocommerce single product page layout.
    So the short answer is no, you can not create a layout with the ALB and have it as the default Woocommerce single product page layout.
    Above you asked how to add 5 column related products to your product pages, this should add the related products in the place that you want them, did you try it?
    I couldn’t test because your sandbox site doesn’t allow the child theme functions.php to be edited.
    Try the function to add the new related products and then add the css to hide the old one in the alternate content area.

    Best regards,
    Mike

    #1394984

    In reply to: Remove alt image name

    Hi 95mc,

    Please try to use this code: (based on Guenni007’s code in this thread: https://kriesi.at/support/topic/issue-with-lightbox-image-titles/#post-1356119 I just added .av-masonry-image-container in the list of elements)

    function temporary_removal_title_tags(){
    ?>
    <script>
      window.onload = function() {
          var links = document.querySelectorAll('a, img, .av-masonry-image-container');
          for (var i = 0; i < links.length; i++) {
              var link = links[i];
              link.onmouseover = function() {
                  this.setAttribute("data-tooltip", this.title);
                  this.title = "";
              };
              link.onmouseout = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
              link.onmousedown = function() {
                  this.title = this.getAttribute("data-tooltip");
              };
          }
      };
    </script>
    <?php
    }
    add_action('wp_footer', 'temporary_removal_title_tags');

    Hope this helps.

    Best regards,
    Nikko

    #1394939

    No way, sorry
    Error:

    Fatal error: Uncaught Error: Class “avia_sc_cell_one_half” not found in /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-content/themes/enfold-child/shortcodes/grid_row.php:80 Stack trace: #0 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1605): avia_sc_grid_row->editor_element(Array) #1 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-template-builder.php(2166): aviaShortcodeTemplate->prepare_editor_element(false, Array, true) #2 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/class-wp-hook.php(308): AviaBuilder->js_template_editor_elements(”) #3 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(”, Array) #4 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #5 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/media-template.php(1516): do_action(‘print_media_tem…’) #6 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/class-wp-hook.php(308): wp_print_media_templates(”) #7 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array) #8 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-admin/admin-footer.php(78): do_action(‘admin_footer’, ”) #10 /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-admin/post.php(369): require_once(‘/homepages/36/d…’) #11 {main} thrown in /homepages/36/d460362686/htdocs/TESTFLIEGER/wp-content/themes/enfold-child/shortcodes/grid_row.php on line 80

    #1394895
    HUHU7777
    Participant

    Guten Tag,
    bei meiner Seite kann ich keine Änderungen im Seiteninhalt machen?
    Der Page Builder lädt und lädt und lädt ???
    WordPress (6.1.1)
    Version von PHP (7.4.33)
    Enfold 5.xx

    An was kann das liegen?
    Gibt es ein Batch? oder ähnliches ?
    Danke und VG
    Torsten

    SyberKnight
    Participant

    I would REALLY appreciate some help making a second template for my WP site in Enfold.

    I am NOT referring to the “page” template option. I’m referring to when you Edit a Page, in the “Page Attributes” section, selecting a custom “Template”.

    I’ve logged in via FTP & found the “template-builder.php”, “template-blank.php”, “header.php”, & “footer.php” files. I believe i need to create a PHP/HTML/CSS template based on these & put it in my CHILD theme folder for this to work.

    i ‘know’ HTML & CSS, not so much PHP. I even tried modifying the ‘blank’ template but am just not understanding what php bits i need & what i don’t.

    So, what i’m looking to do is…
    I need a landing page & some sub-pages that uses a completely different look/design than the rest of the site.

    I want to create a template and use my own html/css to customize the design/layout – “BUT” i need to still be able to utilize ALL of the “Avia Layout Builder” options for each page.

    This would also need to include:

    1. – using a separate Menu from the Appearance > Menus section;
    2. – ability to toggle the Layout > Sidebar on/off for some pages;
    3. – have custom Widgets from the Widgets page to use in these pages;
    4. – use specific Posts Categories to display those Posts on a page(s);
    5. – and i’m not sure if doing this would interfere with any Plugins, so to make sure it won’t.

    I tried just using the “template-blank.php” code, but 3 issues with that…
    1) if i add it to my child theme, edit a page, & select it as the template, yes the header & footer are gone, but the body/content box is full-width of the window, whereas with the standard template, it obeys the dimensions i set in the child theme settings;
    2) it can’t utilize a custom menu from the Appearance > Menus settings;
    3) i don’t know where to add the usual html/css code in or around the php code. do i add the <html><head>my code</head><body>then close</body></html>???

    // https://pastebin.com/LvXSFXVY

    do i need code from the “template-builder.php”, “header.php”, & “footer.php” files?

    here’s a combined file (template-custom.php) that has the code from the “template-builder.php”, “header.php”, & “footer.php” files.
    would it be better for you to just tell me which lines out of this to delete &/or modify???

    <!-- BEGIN CUSTOM TEMPLATE -->
    
    // https://pastebin.com/Et9vCCUh
    #1394843

    For the unbelievers among us ;)
    you can also test something like this in the developer tools of the browser. The script (pure without php part) is entered via the console – new CSS instructions can then also be tested in the simulation.

    Vimeo Video

    #1394800
    Berrys79
    Participant

    Hi there,
    I am looking after a website for a client. The website was originally set up years ago by another designer. They chose your theme and it has been working fine. But I have recently needed to update WP versions and plugins and the theme started to break.
    As I didn’t have access to the originators account with you, I have just bought the theme again on a new licence and am now posting this support request as I’m stuck how to fix the problem.

    The website builder doesn’t seem to be working correctly and not updating. I am seeing the WP editor at the top of screen, and the theme builder below. There is no Visual Editor showing, and when i make a change to the html code and save – I get all code showing on screen…..

    The following errors are showing:
    Warning: Illegal string offset ‘http_code’ in /var/www/vhosts/estasaddles.com/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307

    Warning: Invalid argument supplied for foreach() in /var/www/vhosts/estasaddles.com/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49

    Warning: Illegal string offset ‘http_code’ in /var/www/vhosts/estasaddles.com/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-envato-protected-api.php on line 307

    Warning: Invalid argument supplied for foreach() in /var/www/vhosts/estasaddles.com/public_html/wp-content/themes/enfold/framework/php/auto-updates/class-pixelentity-theme-update.php on line 49

    Please can you help me fix this situation.
    Thank you :-)

    #1394736

    Hi,

    2.) You can create a copy of the taxonomy-portfolio.php file in the child theme to override the original template.

    – it works only in 767px resolution
    – 768px resolution and higher => wrong displayed
    – between 480px and 700px => wrong displayed

    3.) We can’t see the issue on our end. Would you mind providing a screenshot? You can use imgur, savvyify or dropbox for the screenshot. Thanks.

    Best regards,
    Ismael

    #1394714

    Hi,
    Thank you for your patience and the link to your site, I changed the function to show the widget in the header that was in your child theme functions.php to this:

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( 'header' );
    }

    and then I added this function in your child theme functions.php to move the notification area above the top bar:

    function add_top_notification_widget() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
         $('#header_main .widget').detach().insertBefore('#header_meta');
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'add_top_notification_widget');

    and I added this css to your child theme stylesheet:

    /* Notification bar */
    .responsive #top #header .widget>div {
        display: flex;
        justify-content: center;
        align-items: center;
        align-self: center;
        line-height: 14px;
        padding: 0 10px;
        background: gold;
        width: 100vw;
        position: relative;
        z-index: 1;  
        left: 50%;
        transform: translateX(-50%);
    }
    .responsive #top #header .widget>div>p {
    	margin: 0;
        padding: 7px;
    }
    .responsive #top #header .widget {
    	padding:  0;
    }

    and after clearing your cache this is the result:
    Enfold_Support_166.jpeg
    I was not sure if you wanted it to show because you had the widget hidden, so I hid it when I was done, so please un-hide to check.
    Enfold_Support_168.jpeg

    Best regards,
    Mike

    Hey Vera,
    Thanks for your patience and the link to your site I have checked with my browser Dev Tools and my Android device and the solution seems to be working, please see the screenshot in the Private Content area. You could try changing the wait time for the script to work, it was set to 300 milliseconds
    Enfold_Support_156.jpeg
    try changing it to 500, or 700, or 900 all of which is still less than a second.
    If this doesn’t help add console.log("click"); to it so we can see if it is consistently clicking, it will add a message to the browser console log.
    This is how you would add it:

    function custom_portfolio_tab_click() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($) {
    	if ($(window).width() < 768) {
    	setTimeout(function(){
        $("#top.single-portfolio #av-tab-section-1").find('a.av-active-tab-title').trigger("click");
        console.log("click");
    	},500);
    	} else {}
    }(jQuery));
    });
      </script>
      <?php
    }
    add_action('wp_footer', 'custom_portfolio_tab_click');

    Best regards,
    Mike

    Vera
    Participant

    Hi,

    this is a follow up of post 1377644.

    The code from Mike for functions.php worked well to trigger the individual height of the tab sections on mobile screen sizes. Somehow the problem reappeared.

    Thank you for suggestions.

    Best regards,
    Vera

    #1394691

    Topic: Souci version PHP

    in forum Enfold
    jetsaveurs.com
    Participant

    Bonjour Actuellement mon site fonctionne parfait chez mon hébergeur en PHP 7,4 mais mon hébergeur m’impose de mettre à jour ma version PHP en 8,1.
    Le problème c’est que lorsque je choisis la version PHP 8,1 chez mon hébergeur, certains éléments (images n’apparaissent plus), et j’ai également des erreurs qui apparaissent dans mon tableau de bord :

    Warning: Constant WP_MEMORY_LIMIT already defined in /homepages/13/d621856167/htdocs/jetsaveurs/wp-config.php on line 94

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/13/d621856167/htdocs/jetsaveurs/wp-config.php:94) in /homepages/13/d621856167/htdocs/jetsaveurs/wp-admin/includes/misc.php on line 1416

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/13/d621856167/htdocs/jetsaveurs/wp-config.php:94) in /homepages/13/d621856167/htdocs/jetsaveurs/wp-includes/functions.php on line 6865

    Warning: Cannot modify header information – headers already sent by (output started at /homepages/13/d621856167/htdocs/jetsaveurs/wp-config.php:94) in /homepages/13/d621856167/htdocs/jetsaveurs/wp-admin/admin-header.php on line 9<

    Merci par avance pour votre aide rapide,
    Julien

    #1394616

    Hi Ismael,

    2) Done and works, thanks. I use a Child theme, so can you pls give me a code used in the child theme functions.php?
    3) I followed your instruction and:
    – it works only in 767px resolution
    – 768px resolution and higher => wrong displayed
    – between 480px and 700px => wrong displayed

    See here: https://mtsakademie.cz/kategorie-sluzeb/lekce-a-kurzy/

    Br,
    Zdenek

    #1394547
    torsteino
    Participant

    Hi,
    we have an issue here, this is happening both on php 8.0 and 8.2, with the newest update of the theme:

    Fatal error: Uncaught TypeError: avia_accessibility_body_class(): Argument #1 ($classes) must be of type array, null given, called in /home/2/l/lynn/www/wp/wp-includes/class-wp-hook.php on line 310 and defined in /home/2/l/lynn/www/wp/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php:2877 Stack trace: #0 /home/2/l/lynn/www/wp/wp-includes/class-wp-hook.php(310): avia_accessibility_body_class(NULL) #1 /home/2/l/lynn/www/wp/wp-includes/plugin.php(205): WP_Hook->apply_filters(NULL, Array) #2 /home/2/l/lynn/www/wp/wp-includes/post-template.php(853): apply_filters('body_class', Array, Array) #3 /home/2/l/lynn/www/wp/wp-includes/post-template.php(612): get_body_class(Array) #4 /home/2/l/lynn/www/wp/wp-content/themes/enfold/header.php(239): body_class('stretched rtl_c...') #5 /home/2/l/lynn/www/wp/wp-includes/template.php(783): require_once('/home/2/l/lynn/...') #6 /home/2/l/lynn/www/wp/wp-includes/template.php(718): load_template('/home/2/l/lynn/...', true, Array) #7 /home/2/l/lynn/www/wp/wp-includes/general-template.php(48): locate_template(Array, true, true, Array) #8 /home/2/l/lynn/www/wp/wp-content/themes/enfold/template-builder.php(15): get_header() #9 /home/2/l/lynn/www/wp/wp-includes/template-loader.php(106): include('/home/2/l/lynn/...') #10 /home/2/l/lynn/www/wp/wp-blog-header.php(19): require_once('/home/2/l/lynn/...') #11 /home/2/l/lynn/www/index.php(17): require('/home/2/l/lynn/...') #12 {main} thrown in /home/2/l/lynn/www/wp/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on line 2877

    #1394543

    I turned off backwpup and still have this message :

    Warning: require_once(/home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php): failed to open stream: No such file or directory in /home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 672

    Fatal error: require_once(): Failed opening required ‘/home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php’ (include_path=’.:/usr/local/php7.4/lib/php’) in /home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 672
    Une erreur critique est survenue sur ce site. Veuillez consulter la boite de réception de l’e-mail d’administration de votre site pour plus d’informations.

    En apprendre plus sur le débogage de WordPress.

    #1394537
    expecom
    Participant

    Hi, I have an old version of Enfold 3.8 full of bug, I bought a new version and after FTP installation when I try to swith to the new version I have an error page with this troubles : (could you help me)

    Warning: require_once(/home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php): failed to open stream: No such file or directory in /home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 672

    Fatal error: require_once(): Failed opening required ‘/home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-responsive.php’ (include_path=’/home/lejardinpj/www/wp-content/plugins/backwpup/vendor/pear/archive_tar:/home/lejardinpj/www/wp-content/plugins/backwpup/vendor/pear/console_getopt:/home/lejardinpj/www/wp-content/plugins/backwpup/vendor/pear/pear-core-minimal/src:/home/lejardinpj/www/wp-content/plugins/backwpup/vendor/pear/pear_exception:.:/usr/local/php7.4/lib/php’) in /home/lejardinpj/www/wp-content/themes/enfold-new/config-templatebuilder/avia-template-builder/php/class-template-builder.php on line 672
    Une erreur critique est survenue sur ce site. Veuillez consulter la boite de réception de l’e-mail d’administration de votre site pour plus d’informations.

    En apprendre plus sur le débogage de WordPress.

    #1394533
    MANUEL GONZALEZ OTEROS
    Guest

    Dear Friend,
    I need the version of Warehouste theme for prestashop version 4.3.8,
    because we use a version of prestashop 1.7.6.7
    with php 7.2, and the current version doesn’t work. my license number is

    #1394505

    Hi,

    Thank you for the info.

    We logged in and added this code in the functions.php file.

    add_action('admin_head', 'ava_custom_admin_css');
    
    function ava_custom_admin_css() {
      echo '<style>
        li[data-slug="vyziva-a-hubnuti-1673934823-1"] {
            display: none !important;
        }
      </style>';
    }
    

    This hides the Výživa a Hubnutí link in the dashboard.

    Best regards,
    Ismael

    Hi,

    We can reproduce the issue on a browse emulation but can’t find any errors or info in the browser console. After a few tries, we get these errors but they don’t seem to be related to the gallery.

    jquery.min.js?ver=3.6.1:2 POST https://www.hanswilreker.com/wp-admin/admin-ajax.php 403
    quotescollectionRefresh @ quotes-collection.js?ver=2.5.2:6
    (anonymous) @ (index):601
    www.site.com/:271 GET https://www.site.com/wp-content/gallery/gallery/cache/A-4.jpg-nggid0268-ngg0dyn-600x472x100-00f0w010c010r110f110r010t010.jpg net::ERR_HTTP2_PING_FAILED 200
    

    Have you tried asking the plugin developers about the issue? They should be able to provide you with more info about the error.

    Best regards,
    Ismael

    #1394010

    Topic: Can’t update theme

    in forum Enfold
    reinhardk4
    Participant

    I’ve inherited a website once created using the enfold theme version 4.5.7. It seems not to be working with PHP 8.0. So I have to update to a newer enfold version. Since the developer is gone and nobody knows about the license, I purchased a new one, created a token and entered it in the update section. The key was accepted, but no update via wordpress took place. The update via FTP doesn’t work, because on the how-to-page is stated that a child-theme is required. Sadly, the developer didn’t build a child-theme. So I tried the export function of the old theme and imported the export file to the new theme. That worked for the most part, but the font type does not look so good. So my question is: Is there a possibility to do an FTP update without a child theme? If not, what causes the font problem? I haven’t found any settings with regard to the font type in the enfold theme.

    #1393956

    Hi Ismael,

    it works with your additional code for the functions.php file.
    Only: now you can’t scroll down the page with/over the images of the slider. And because these images cover most of the surface on the mobile devices it seems that you can’t scroll the page at all.

    If somehow these modifications exceed your support I would like to engage your freelance department to have somebody take a close look.

    On top somehow an old issue is back now in the tab section on mobile devices: the individual height of each tab section seems inaktive when you enter a page. Mike provided a code snippet which worked well but now (suddenly) it doesn’t. (#1377644)

    Maybe I (according to the client’s wishes) have created too many issues.

    Best regards,
    Vera

    #1391376

    Hi Mike,
    thank you for your fast response!

    I did the steps you are recommending:
    1. disable the sticky function and all the other functions in the funciton.php
    2. switch to Enfold parent
    3. disable all the plugins except woocommerce

    Unfortunately it did not help.

    —–
    I know that the sticky function causes an issue in the console, but I don´t know why. I use this solution: https://kriesi.at/support/topic/sticky-element-in-a-page/#post-871884 several years and in the past there were no issues. It arrived with some WordPress or Enfold update, but I don´t know when exactly. Or do you think it can cause used jQuery? I use this solution becase I didn´t find any better (I have tryied everything including some plugins).

    Maybe you will advice me a better solution?
    —–
    I am writting about it because I know that the issue with the breadcrumbs doesn´t cause any function or plugin.

    I exactly know how it happened.
    Recently I (re)build my eshop „from beginning“ (clean wordpress installation etc.) … and I have noticed, that the breadcrumbs are displayd in the strange order: Home / „Name of my website“ / Category / Page. The strange thing is the „Name of my website“ which I never had it there before. And it was linked to the same page as „Home“ => to homepage.

    At the same time I (re)built other my website (not eshop, but presentation web using Portfolio items)… and there was the same issue on portfolio pages. What I did was, that I create a new homepage (new name, new ulr) and set it as homepage in the WordPress settings and also in the Enfold settings. And it helped! The „Name of my website“ disappeared from the breadcrumbs.

    So I expect the same behavior in the eshop installation and I did it the same way. But in the eshop we see the 2 backslashes and empty space between.
    The only defference I see is that the eshop is using woocommerce with product pages. I don´t know, I am not wordpress expert, that´s just what I observed.

    Maybe it can help you to find the real issue?

    If not I am ok because it is working correctly and I can just hide the backslash with your css code => the cs sis working, thank you!

    Waiting for your answer.
    Thanks a lot!
    Zdenek

    #1388190

    Hi Ive update to the latest version but that hasnt fixed my problem. I am uploaded to 123reg server through a hosting package and it says i am running PHP 7.0

    #1388048
    #1388046
    #1388043
    franco stabile
    Guest

    Buongiorno, fino a qualche giorno fa funzionava tutto funzionava bene poi è uscito questo messaggio.

    Warning: Creating default object from empty value in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php on line 28
    Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php:28) in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-admin/includes/misc.php on line 1416

    Ho contattato Siteground e mi hanno svuotato la cache e il messaggio è andato via, però in questo modo non mi faceva modificare le pagine del sito. Ho ripristinato il sito con backup ed è ritornato come prima e con lo stesso messaggio. Ho richiamato Siteground, hanno svuotato di nuovo la cache e si è ripresentata la stessa situazione. Loro dicono che dipende da Enfold che con PHP alla versione 7.4 va in conflitto. Preciso che con PHP 7.3 il sito funziona.
    .
    Come posso fare a risolverlo? Grazie.

    #1388042
    franco stabile
    Guest

    Buongiorno, fino a qualche giorno fa funzionava tutto funzionava bene poi è uscito questo messaggio.

    Warning: Creating default object from empty value in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php on line 28
    Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php:28) in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-admin/includes/misc.php on line 1416

    Ho contattato Siteground e mi hanno svuotato la cache e il messaggio è andato via, però in questo modo non mi faceva modificare le pagine del sito. Ho ripristinato il sito con backup ed è ritornato come prima e con lo stesso messaggio. Ho richiamato Siteground, hanno svuotato di nuovo la cache e si è ripresentata la stessa situazione. Loro dicono che dipende da Enfold che con PHP alla versione 7.4 va in conflitto. Preciso che con PHP 7.3 il sito funziona.
    .
    Come posso fare a risolverlo? Grazie.

Viewing 30 results - 1,621 through 1,650 (of 16,892 total)