Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for creating a staging site. You have to update the FTP account too because it still points to the actual site when we tested it. We need to have access to the files of the new site in order to debug the issue.
Did you try to rename the plugins folder inside the wp-content directory? This will disable the plugins temporarily and might help get rid of the issue temporarily.
Best regards,
IsmaelHi,
The WP Smush plugin works just fine like any other image optimization plugins out there. They’re basically the same. We do recommend the Short Pixel plugin though because it allows you to heavily reduce the file size as much as possible and it has extra options. So if you’re concern more about the page speed rather than the image quality, then it’s the way to go.
Best regards,
IsmaelHi,
We found a few plugins that have the same functionality but they are either deprecated or not available for download.
Can you check the SFTP account? We can’t access the file server using that info. We would like to enable debugging in your installation — see if we can find anything useful in the logs.
Best regards,
IsmaelHi,
We can now access the file server but we can’t find the wp-content directory in the tretroller-laden.de folder. Where is root directory of the site?
Best regards,
IsmaelHi,
We found this error in the log file.
[13-Apr-2020 02:14:11 UTC] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/vnu/public_html/horti-asia.com/wp-content/plugins/email-before-download/includes/class-email-before-download-db.php on line 56 [13-Apr-2020 02:57:16 UTC] PHP Warning: count(): Parameter must be an array or an object that implements Countable in /home/vnu/public_html/horti-asia.com/wp-content/plugins/email-before-download/includes/class-email-before-download-db.php on line 56It’s an error generated by the email-before-download plugin, so we disabled the plugin temporarily but the layer slider is still not working because. It’s still an issue with the memory limit, which is still set to 268435456 Bytes or 268 Megabytes.
This looks like a limitation in your server. You should contact your hosting provider about this or consider transferring to a different server that allows higher PHP memory allocation.
You should also update the outdated plugins when you have the time.
Best regards,
IsmaelApril 15, 2020 at 12:30 pm in reply to: Breadcrumbs are not showing its hierarchy properly for few products #1203945Hi,
Thank you for the update.
Try to add this code in the functions.php file.
// https://pastebin.com/3Jy5RNgc
This should render the child category of the first sub category.
Best regards,
IsmaelApril 14, 2020 at 12:55 pm in reply to: Main menu sub category items should show on mouse over. #1203555Hey Swathi,
Thank you for the inquiry.
The child menu items or sub menu displays on mouse hover by default. Are you using the Enfold theme? Please provide a link to the site so that we can check it.
Best regards,
IsmaelHi,
Thank you for the inquiry.
How did you adjust the translations? Did you regenerate the .mo file? Please use the following plugin to adjust the translations and properly sync the language files.
// https://wordpress.org/plugins/loco-translate/
Best regards,
IsmaelHey Kathryn,
Thank you for using Enfold.
Does the site contain elements like maps, contact form with spam protection or videos? These elements generate their own cookies on page load. Enabling the cookie consent bar will actually help prevent these elements from generating the cookies as long as the Default Cookie Behavior is set to the third option.
Best regards,
IsmaelApril 14, 2020 at 12:20 pm in reply to: Slider error: Uncaught TypeError: ie.transitions._slideTimeline.stop is not a f #1203539Hi,
We have forwarded the issue to our git channel to see if the devs have any idea what’s causing it.
Best regards,
IsmaelApril 14, 2020 at 5:02 am in reply to: Layerslider loads twice, layers don't display, transitions display blanks #1203440Hi,
Thank you for the info.
It seems to be an issue with the theme’s Performance > File Compression settings. The slider doesn’t blink when the compression is disabled. Please keep the option disabled for now and try to use one of the following plugins instead.
// https://wordpress.org/plugins/autoptimize/
// https://wordpress.org/plugins/bwp-minify/Best regards,
IsmaelHi,
We have to access the WordPress dashboard as well. Please include the login details in the private field.
The following error looks like an issue with the WP core or a plugin.
Warning: Illegal string offset 'remember' in /home/goodbyegraffiti/public_html/french/wp-includes/user.php on line 41 Warning: Cannot assign an empty string to a string offset in /home/goodbyegraffiti/public_html/french/wp-includes/user.php on line 41 Warning: Illegal string offset 'user_login' in /home/goodbyegraffiti/public_html/french/wp-includes/user.php on line 56 Fatal error: Uncaught Error: Cannot create references to/from string offsets in /home/goodbyegraffiti/public_html/french/wp-includes/user.php:56 Stack trace: #0 /home/goodbyegraffiti/public_html/french/wp-login.php(806): wp_signon('', '') #1 {main} thrown in /home/goodbyegraffiti/public_html/french/wp-includes/user.php on line 56Please get a fresh copy of the latest version of the WordPress files, then use it to override the whole installation.
Best regards,
IsmaelHi,
When you add the custom class name in the Custom CSS Class field, did you remove the dot before the actual name? So instead of .my-new-port-size, the field should contain my-new-port-size.
You should also adjust the css code a bit — just add a space after the custom css class name.
.my-new-port-size .grid-entry-excerpt.entry-content { font-size: 18px; }Best regards,
IsmaelHi,
Thank you for the update.
The filter should return an html output. Please try this code instead.
add_filter( 'avf_portfolio_extra', 'avf_portfolio_extra_mod_cat', 10, 2 ); function avf_portfolio_extra_mod_cat( $output, $entry ) { $clients = get_field('nom_du_client', $entry->ID); $output .= "<div class='zebra-client'>". $clients ."</div>"; return $output; }Best regards,
IsmaelHi,
Thank you for the update.
It looks fine on a 1920x1020px monitor. If you want the total height of layer slider and the color section to be the same as the height of the browser view port, you will have to create a script that calculates the current height of the browser and apply the returned value as the height of the layer slider and the color section. Unfortunately, this will require a bit customization and is beyond the scope of support. Please hire a freelance developer or contact our partner, Codeable.
// https://kriesi.at/contact/customization
Another solution is to include the content of the color section inside the layer slider and make the slider inherit the height of the view port. You can do it in the Slider Settings > Layouts panel. Set the Slider Type to Full Size and toggle the Mode from Normal to Hero Scene.
Best regards,
IsmaelHi,
Sorry for the late response. We found the problem in the class-avia-custom-pages.php file (see private file) > query_page function. For unknown reason, the get_posts function queries the 404 page instead of the footer page. To fix the issue, we replaced the get_posts with the get_post function.
protected function query_page( $page_id = null, $context = '' ) { if( empty( $page_id ) || ! is_numeric( $page_id ) ) { return false; } $post = get_post( $page_id ); /** * Filter result * * @used_by currently unused * @since 4.5.4 * @return WP_Post|false */ return apply_filters( 'avf_custom_pages_query_page', $post, $page_id, $context ); }Best regards,
IsmaelApril 14, 2020 at 3:30 am in reply to: Woocommerce Product image in Avia Builder using wooswatches #1203423Hi,
Thanks for chiming in. You can create a custom shortcode that renders the default product gallery. Add this code in the functions.php file.
add_shortcode( 'avs_product_gallery_hook', 'avs_product_gallery_hook_callback' ); function avs_product_gallery_hook_callback( $atts ) { ob_start(); woocommerce_show_product_images(); $content = ob_get_clean(); return $content; }Edit a product, switch to the advance builder and in a text or code block, add the shortcode.
[avs_product_gallery_hook]Best regards,
IsmaelApril 14, 2020 at 2:59 am in reply to: Fatal error caused in enfold/config-woocommerce/woo-loader.php #1203422Hi,
Sorry for the delay. We still can’t access the dashboard. Please temporarily disable the security configuration so that we don’t have to input our IP address in the .htaccess file.
Best regards,
IsmaelHi,
You can still configure the settings from the plugin’s panel and use the new widget from the theme.
Best regards,
IsmaelApril 13, 2020 at 10:35 am in reply to: changing breadcrumbs background color and font size in the icon boxes #1203262Hi,
Yes, that is one of the limitations of the uploader. You can only upload a single set of icons.
Best regards,
IsmaelHi,
Alright then. Sorry if we are not able to help you this time. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the screenshots.
The logo shrinks because of the padding around it or this css code.
.responsive .logo img { min-width: 200px; padding: 20px 0; }Try to add this css code below the previous one to decrease the padding when the header is scrolled.
.responsive .header-scrolled .logo img { padding: 5px 0; }Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Sorry for the delay. The content was not aligning properly because of this css code.
.main_color.container_wrap_first.container_wrap.fullsize .container { margin: 0 !important; }We removed it from the style.css file.
Best regards,
IsmaelHi,
Thank you for the info.
Did you enable the Performance > File Compression settings? And did you toggle it or disable it temporarily after doing the modification above? It’s possible that the site is still loading the older compressed version of the scripts, and without the changes above.
Best regards,
IsmaelApril 13, 2020 at 8:27 am in reply to: Burger/Mobile submenu links / How can I add a further colour for the… #1203243Hi,
You’ve actually deleted the most recent modification instead of the older one. We’ve added the css code again in the Quick CSS field. It should work properly now. Please don’t forget to remove the cache prior to checking the page and if you have further questions, try to open a new thread.
Screenshot: https://imgur.com/a/8tiyv3j
As you can see in the screenshot above, the active parent/child menu items are white and the other child items are the default orange. They should also change to white on hover.
Best regards,
IsmaelApril 13, 2020 at 8:08 am in reply to: Cookie settings: deactivate plugins and scripts until consents are given #1203242Hi,
The video is not visible in the page because a plugin is hiding it with css, but we do see the youtube cookies in the local storage. And it looks like you’ve created the page from a different site. How can we access it?
This is the css code from the plugin.
.wpca-blocked { display: none !important; }Can you still see the cookie when the wpca plugin is disabled?
We can’t reproduce the same issue our end using the Video element with the lazy load option enabled.
Best regards,
IsmaelHi,
Sorry for the delay. The caption should be added as an overlay above the image by default. You can also set it to display on hover if necessary.
Can you give us a link to a test page? Or post the login details in the private field so that we can create an example. Please make sure that the site contains the latest version of the theme.
Best regards,
IsmaelHi,
Sorry for the delay. Try to replace the code with this one.
//check if post is password protected if( post_password_required( $id ) ) { $this->loop[ $key ]['class'][] = 'entry-protected'; $this->loop[ $key ]['text_before'] = av_icon_display('closed'); }Best regards,
IsmaelHi,
Sorry for the delay. Where did you add the form again? We tried to create a page and put the [user-submitted-posts] shortcode within the post editor, but we get an error whenever we try to publish or save the page as draft. Do you experience this issue on your end?
Please contact the plugin author for additional help.
Best regards,
Ismael -
AuthorPosts
