Viewing 30 results - 5,941 through 5,970 (of 244,025 total)
  • Author
    Search Results
  • #1465346

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1465344
    the_digital_manager
    Participant

    I placed a script in a footer widget and i see quite some padding/margin around this element. I’m not sure if this is due to the script, or due to enfold, hence I’d like to check here.

    If it is enfold, then how do i get right of the margin/padding around it? Ideally the content of the script nicely aligns with the titel of the widget (content aligned left without box around it)

    https://schoonheidsinstituutdiane.nl/ (is salonized review element under ‘reviews’ in the footer)

    script in private content

    #1465331

    BTW, I took all of the pages known to be using (Enfold) short codes and placed them in Draft mode. That didn’t fix the problem.
    There are a couple of pages that use shortcodes (e.g.: mailing list forms). Would this need to be checked?

    #1465330

    Hi Mike,
    Since the pages without shortcodes are not working as well, does this mean that whenever I use shortcodes it may break Enfold child?

    #1465322
    nTECHgrate
    Participant

    Hello Enfold Team,

    I have added a video to the widget of my site, but it is only visible on the homepage. On all other pages, you see the “play” icon, but clicking it doesn’t do anything.

    Thanks for your help.

    -James

    #1465321
    ronduring
    Participant

    In the site admin, on a regular page, we re using the table feature for some content. Within the content boxes of the tables we have been using a small svg image icon next to a link. The source code for the svg in the code is 24px. At some point a few versions back on Enfold, when you go edit these tables we see a really large Icon image just showing in the admin. It makes it very difficult to make edits. On the front end of the site, things are ok. When inspecting the element this is what you see:

    .avia-modal img[src*=”.svg”] {
    width: 1500px;
    }
    The source location for the css is here:
    themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.min.css?ver=6.6.1-6.0.3

    I try putting in CSS overrides at the Enfold level, and WordPress customize, and that didn’t work. I also tried a child theme and then tried the CSS directly in that and it didn’t work. Please advise what can be done to override this correctly.

    #1465314

    In reply to: New Social Media Links

    This reply has been marked as private.
    #1465307

    Hi,
    This seems to be a duplicate thread, please see your other thread:

    You could add a check for the page that you want you show it on, for example if the page ID is “1028” use this:

    add_action( 'ava_after_main_title', 'enfold_customization_blog_widget_area', 50 );
    function enfold_customization_blog_widget_area() {
        if ( is_page(1028) ) { 
            dynamic_sidebar( 'blogheaderwidget' );
        }
    }

    or you can use the page slug like this:

    add_action( 'ava_after_main_title', 'enfold_customization_blog_widget_area', 50 );
    function enfold_customization_blog_widget_area() {
        if ( is_page('your-page-slug') ) { 
            dynamic_sidebar( 'blogheaderwidget' );
        }
    }

    The WordPress Conditional Tags documentation state:

    There is no conditional tag for the blog page. You have to use both is_home() and is_front_page() to detect this page, but those functions can be misused.

    They offer a different solution, try reading it, but I think the two solutions above will work fine.

    Best regards,
    Mike

    #1465306

    Hi,
    You could add a check for the page that you want you show it on, for example if the page ID is “1028” use this:

    add_action( 'ava_after_main_title', 'enfold_customization_blog_widget_area', 50 );
    function enfold_customization_blog_widget_area() {
        if ( is_page(1028) ) { 
            dynamic_sidebar( 'blogheaderwidget' );
        }
    }

    or you can use the page slug like this:

    add_action( 'ava_after_main_title', 'enfold_customization_blog_widget_area', 50 );
    function enfold_customization_blog_widget_area() {
        if ( is_page('your-page-slug') ) { 
            dynamic_sidebar( 'blogheaderwidget' );
        }
    }

    The WordPress Conditional Tags documentation state:

    There is no conditional tag for the blog page. You have to use both is_home() and is_front_page() to detect this page, but those functions can be misused.

    They offer a different solution, try reading it, but I think the two solutions above will work fine.

    Best regards,
    Mike

    #1465302

    Hi,
    As for updating, I don’t believe that you are using the correct zip file installable WP version, in your Theme Forest account there are two files to download, on includes other files and documentation, this will cause the error that you see, please look for installable WP version. Otherwise please upload to dropbox so I can download it and check.
    As for some of your pages without Advanced layout builder:
    Screen Shot 2024 08 24 at 9.13.02 AM
    most are not ALB pages, but I did find one called “Magazine”
    Screen Shot 2024 08 24 at 9.19.16 AM
    this was saved as a “block editor” page at one time and the reason that you don’t see the ALB button is an error in the theme version or a plugin conflict, so to fix without updating I switch to the “classic editor” at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor
    Screen Shot 2024 08 24 at 9.24.00 AM
    now the button shows:
    Screen Shot 2024 08 24 at 9.25.45 AM
    I then click it and the ALB page loads and I re-save:
    Screen Shot 2024 08 24 at 9.27.45 AM
    and now the page is fixed:
    Screen Shot 2024 08 24 at 9.29.44 AM
    please check and try this with your other pages.
    Please note that your “About Us” page is not a ALB page, so if you don’t see code in the page don’t convert to a ALB page.

    Best regards,
    Mike

    #1465301

    Hi Rikard,
    The only thing checked under Enfold > Performance is Responsive Images. However, I’ve disabled the Siteground Speed Optimiser plug-in and the photos are now showing. I haven’t tried putting the slider back yet but will do so in the morning and get back to you. Thank you for your help thus far.
    Best regards,
    Jocelyn

    #1465295

    In reply to: Burger Menu

    Hi,
    ionware1 I would recommend disabling all plugins and see if that helps, if not and you are using a child theme with custom files like a header.php or footer.php remove these files or switch to the parent theme and see if that helps.
    If not then please open a new thread so we can assist, and include your admin login in the Private Content area, but as this is not your thread your login info will not be private if posted here, and you will not be able to see anything that we write in the Private Content area.

    Best regards,
    Mike

    #1465291

    Hi sparkyj,

    You can add your custom post types under Enfold->Layout Builder.

    Saved templates will show up under the elements block in the Layout Builder, on the right hand side.

    Best regards,
    Rikard

    #1465290

    Hi,

    Are you using the Siteground optimiser plugin? If so, then please try to turn off file compression in the theme under Enfold->Performance.

    Best regards,
    Rikard

    Hi forestbuzz,

    Could you try updating the theme to the latest version (6.0.3) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    Dear forrestbuzz,

    your version is more than one year old: July 26th 2023 – Version 5.6.5

    I would upload manually newest enfold via ftp, rename the older to enfold_old, use the newest enfold and take a look, does all working fine in front- and backend, play around with the PHP versions and clear the cache.
    see also https://kriesi.at/support/topic/updating-from-3-8-5/
    cheers

    • This reply was modified 1 year, 5 months ago by Hokuspokus.
    #1465279
    joceywatts
    Participant

    Hello. I’ve been using Enfold for some years without any issues, yet this week my homepage slider and images in my latest blog cannot be seen on my device screens. What’s happened to them? They still exist within WordPress, but they’re not visible on devices. I’ve removed the slider while I wait for advice on the fix.

    forestbuzz
    Participant

    Hi Support,

    Three(3) of my sites broke yesterday! Had to revert PHP 8.2 back to 8.1.29 to get the errors to go away.

    They are all updated to the latest Enfold version of 5.6.5. (WP 6.6.1).

    Here are examples of two of the site error messages. Please help, I am not a developer or programmer, a novice.

    Errors:
    Website: WhyCookAlameda.com
    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_sizes_options is deprecated in /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 65

    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_titles is deprecated in /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 81

    Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/whycookalameda.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:65) in /home/customer/www/whycookalameda.com/public_html/wp-includes/pluggable.php on line 1093

    Website: Excalibersearch.com
    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_sizes_options is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 65

    Deprecated: Creation of dynamic property Avia_Popup_Templates::$resp_titles is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php on line 81

    Deprecated: Creation of dynamic property avia_slideshow::$service is deprecated in /home/customer/www/excalibursearch.com/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-slideshow.php on line 800

    Again, please help. I have given you access in the private section.

    pnamroud
    Participant

    Hello Support,

    I’m currently using the built-in contact form that comes with your Enfold theme. The contact form works well, and I’m receiving emails as expected. However, I would like to customize the template of the email that is sent out.

    Specifically, I want to include the [tracking-info] “shortcode” in the email template so that the tracking information is included with each submission. remind you the tracking information is another third part widget (https://wordpress.org/plugins/universal-wp-lead-tracking/)

    Could you please guide me on how I can modify the email template in Enfold to include this shortcode?

    Thank you for your assistance.

    Best regards,
    Pierre Namroud

    #1465268

    In reply to: Updating from 3.8.5

    Hey Anne,

    The update to 6.0.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1465267

    Hey FFAlan,

    Could you try updating the theme to the latest version (6.0.3) to see if that helps please? https://kriesi.at/documentation/enfold/theme-update/.

    Best regards,
    Rikard

    #1465266

    In reply to: Resize H1 e H1 font

    Hey maryenvato,

    I’m not sure I fully understand your intentions, did you check your settings under Enfold->Advanced Styling?

    Best regards,
    Rikard

    #1465265

    In reply to: header problem

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1465263
    Anne
    Guest

    Hello,
    My client has Enfold v3.8.5 and wants to update to the most current version.

    I read a support post about updating from 4.4.1 to 5.6.5. But, we want to make sure we can do the update from 3.8.5. Is this possible?

    thank you, Anne

    #1465262
    FFAlan
    Participant

    In WordPress page view, five of my 27 pages do not say ‘Advanced Layout Builder’ next to them, although every page was built using this. If I try to edit one of the pages without this heading I just get a page full of code. How do I revert to the Advanced Layout view. I’m using Enfold 5.6.12 and WordPress 6.6.1.

    #1465255

    See test area showing issue where my two widget areas are both showing on the shop when it only used to show one in the previous enfold version.

    #1465251
    thinkjarvis
    Participant

    Hi guys,

    in the latest enfold version 6.03

    The following is supposed to add a widget to just the blog pages. This is no longer the case – The widget area is applying to all pages.
    Please can you let me know how we resolve this?
    // Add Widget above news pages
    add_action( ‘ava_after_main_title’, ‘enfold_customization_blog_widget_area’, 50 );
    function enfold_customization_blog_widget_area() {
    dynamic_sidebar( ‘blogheaderwidget’ );
    }

    #1465239

    In reply to: Editor Text Avia

    Hey Bettonville,

    Thanks for the login details. I see that you are running an old version of the theme, could you try to update to the latest version (6.0.3) to see if that helps please? The update to 6.0.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
    You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
    If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
    Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1465233

    Topic: Host error

    in forum Enfold
    royalbindi
    Participant

    We have reached out to the hosting provider who have advised the following.

    We are mainly experiencing this issue when updating the posts or pages.

    Please see the message from them below,
    I am seeing several fatal code errors mostly coming from your themes, code please revise your settings.

    https://privatebin.net/?eb4a5689f22053a0#CNJK1S1uqrU5mBTxopER69CweyxkunQh12T7XpxgHJuz

    * ERROR LOG TYPE SUMMARY *
    +————————–+
    | Count | Error Type |
    |——–+—————–|
    | 63 | auditor_scan |
    | 33 | php_notice |
    | 13 | php_error |
    | 11 | auditor_event |
    | 3 | php_fatal |
    | 14 | SKIPPED |
    +————————–+
    php_notice
    +————————————————————————————————————————————————-+
    | Count | Message |
    |——-+—————————————————————————————————————————————–|
    | 30 | preventing possible attempt to enumerate users |
    | 1 | wpe_cache_plugin:info: event=clear-all-cache, referer: https://royalbindi.co.uk/wp-admin/ |
    | 1 | wpe_cache_plugin:info: event=clear-all-cache, referer: https://royalbindi.co.uk/wp-admin/options-general.php?page=wprocket |
    | 1 | wpe_cache_plugin:info: event=clear-all-cache, referer: |
    | | https://royalbindi.co.uk/wp-admin/admin.php?page=wpengine-common&tab=caching&_wpnonce=1960d1f4d3 |
    +————————————————————————————————————————————————-+
    php_error
    +————————————————————————————————————————————————-+
    | Count | Message |
    |——-+—————————————————————————————————————————————–|
    | 4 | PHP Parse error: syntax error, unexpected single-quoted string “order”, expecting “)” in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 543, referer: |
    | | https://royalbindi.co.uk/blog/?n,jbuyasflx |
    | 4 | PHP Parse error: syntax error, unexpected single-quoted string “order”, expecting “)” in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 543, referer: |
    | | https://royalbindi.co.uk/wp-admin/theme-editor.php?file=config-templatebuilder%2Favia-shortcodes%2Fblog%2Fblog.php&theme=enfold |
    | 3 | PHP Parse error: syntax error, unexpected single-quoted string “order”, expecting “)” in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 543 |
    | 2 | PHP Parse error: syntax error, unexpected single-quoted string “order”, expecting “)” in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 543, referer: |
    | | https://royalbindi.co.uk/wp-admin/admin.php?page=wpcode-snippet-manager&snippet_id=19960 |
    +————————————————————————————————————————————————-+
    php_fatal
    +————————————————————————————————————————————————-+
    | Count | Message |
    |——-+—————————————————————————————————————————————–|
    | 2 | Uncaught TypeError: usort(): Argument #1 ($array) must be of type array, null given in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php:822\nStack |
    | | trace:\n#0 /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php(822): |
    | | usort(NULL, Object(Closure))\n#1 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php(658): |
    | | avia_post_slider->html()\n#2 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_blog->shortcode_handler(Array, ”, ‘av_blog’, Array)\n#3 /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): |
    | | aviaShortcodeTemplate->shortcode_handler_prepare(Array, ”, ‘av_blog’)\n#4 : do_shortcode_tag(Array)\n#5 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, |
    | | ‘\\n[av_textblock …’)\n#6 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): |
    | | do_shortcode(‘\\n[av_textblock …’)\n#7 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns/columns.php(2088): |
    | | ShortcodeHelper::avia_remove_autop(‘\\n[av_textblock …’, true)\n#8 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_columns->shortcode_handler(Array, ‘\\n[av_textblock …’, ‘av_one_full’, Array)\n#9 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\\n[av_textblock |
    | | …’, ‘av_one_full’)\n#10 : do_shortcode_tag(Array)\n#11 /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): |
    | | preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, ‘</p>\\n[av_one_fu…’)\n#12 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): |
    | | do_shortcode(‘</p>\\n[av_one_fu…’)\n#13 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/section/section.php(1547): |
    | | ShortcodeHelper::avia_remove_autop(‘</p>\\n[av_one_fu…’, true)\n#14 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_section->shortcode_handler(Array, ‘</p>\\n<p>[av_one…’, ‘av_section’, Array)\n#15 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): aviaShortcodeTemplate->shortcode_handler_prepare(Array, |
    | | ‘</p>\\n<p>[av_one…’, ‘av_section’)\n#16 : do_shortcode_tag(Array)\n#17 /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): |
    | | preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, ‘[av_section min…’)\n#18 |
    | | /nas/content/live/royalbindi/wp-includes/class-wp-hook.php(324): do_shortcode(‘[av_section min…’)\n#19 |
    | | /nas/content/live/royalbindi/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘[av_section min…’, Array)\n#20 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/template-builder.php(102): apply_filters(‘the_content’, ‘[av_section |
    | | min…’)\n#21 /nas/content/live/royalbindi/wp-includes/template-loader.php(106): include(‘/nas/content/li…’)\n#22 |
    | | /nas/content/live/royalbindi/wp-blog-header.php(19): require_once(‘/nas/content/li…’)\n#23 |
    | | /nas/content/live/royalbindi/index.php(17): require(‘/nas/content/li…’)\n#24 {main}\n thrown in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.php on line 822 |
    | 1 | Uncaught Error: Call to undefined method avia_sc_blog::sort_buttons() in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php:623\nStack trace:\n#0 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_blog->shortcode_handler(Array, ”, ‘av_blog’, Array)\n#1 /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): |
    | | aviaShortcodeTemplate->shortcode_handler_prepare(Array, ”, ‘av_blog’)\n#2 : do_shortcode_tag(Array)\n#3 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, |
    | | ‘\\n[av_textblock …’)\n#4 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): |
    | | do_shortcode(‘\\n[av_textblock …’)\n#5 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns/columns.php(2088): |
    | | ShortcodeHelper::avia_remove_autop(‘\\n[av_textblock …’, true)\n#6 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_columns->shortcode_handler(Array, ‘\\n[av_textblock …’, ‘av_one_full’, Array)\n#7 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): aviaShortcodeTemplate->shortcode_handler_prepare(Array, ‘\\n[av_textblock |
    | | …’, ‘av_one_full’)\n#8 : do_shortcode_tag(Array)\n#9 /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): |
    | | preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, ‘</p>\\n[av_one_fu…’)\n#10 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-helper.php(559): |
    | | do_shortcode(‘</p>\\n[av_one_fu…’)\n#11 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/section/section.php(1547): |
    | | ShortcodeHelper::avia_remove_autop(‘</p>\\n[av_one_fu…’, true)\n#12 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(13… |
    | | avia_sc_section->shortcode_handler(Array, ‘</p>\\n<p>[av_one…’, ‘av_section’, Array)\n#13 |
    | | /nas/content/live/royalbindi/wp-includes/shortcodes.php(434): aviaShortcodeTemplate->shortcode_handler_prepare(Array, |
    | | ‘</p>\\n<p>[av_one…’, ‘av_section’)\n#14 : do_shortcode_tag(Array)\n#15 /nas/content/live/royalbindi/wp-includes/shortcodes.php(273): |
    | | preg_replace_callback(‘/\\\[(\\\[?)(av_blo…’, ‘do_shortcode_ta…’, ‘[av_section min…’)\n#16 |
    | | /nas/content/live/royalbindi/wp-includes/class-wp-hook.php(324): do_shortcode(‘[av_section min…’)\n#17 |
    | | /nas/content/live/royalbindi/wp-includes/plugin.php(205): WP_Hook->apply_filters(‘[av_section min…’, Array)\n#18 |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/template-builder.php(102): apply_filters(‘the_content’, ‘[av_section |
    | | min…’)\n#19 /nas/content/live/royalbindi/wp-includes/template-loader.php(106): include(‘/nas/content/li…’)\n#20 |
    | | /nas/content/live/royalbindi/wp-blog-header.php(19): require_once(‘/nas/content/li…’)\n#21 |
    | | /nas/content/live/royalbindi/index.php(17): require(‘/nas/content/li…’)\n#22 {main}\n thrown in |
    | | /nas/content/live/royalbindi/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.php on line 623 |
    +————————————————————————————————————————————————-+
    auditor_scan
    +———————+
    | Count | Message |
    |——-+————-|
    | 63 | fingerprint |
    +———————+
    auditor_event
    +—————————-+
    | Count | Message |
    |——-+——————–|
    | 8 | wp_login |
    | 2 | activated_plugin |
    | 1 | deactivated_plugin |
    +—————————-+

    #1465232

    Hi,

    Thanks for the kind words. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 30 results - 5,941 through 5,970 (of 244,025 total)