natnol
Forum Replies Created
-
Thank you for your guidance, it seems I needed to increase the mb limit on the hosting server. It’s working now.
Hi there
Thanks very much for getting back to me.
I have the same issue on another site on the same theme, which is smaller, so I ran tests on that one. It turns out the conflict is with Avada. This seems strange to me, as the Events Calendar plugin comes with Avada?
Events Calendar: Version 6.0.12
Avada 7.10.1
Word Press 6.2
PHP: 8.0.28I look forward to hearing from you.
Hi there
There is no update for Graphina Pro.
I had ‘back-graded’ Elementor to see if it would help make the plugin work. I’ve now updated it, and it’s still not working.I look forward to hearing from you.
Forum: Plugins
In reply to: [wp-Typography] Prevent widow not workingFantastic, thanks so much for this! The widow control seems to be working now.
Forum: Plugins
In reply to: [wp-Typography] Prevent widow not workingAmazing, thank you!!! ??
Forum: Plugins
In reply to: [wp-Typography] Prevent widow not workingHi there
Thanks for your feedback, here’s a page example:
https://waterstories.co.za/green-point/My settings are:
Widows
[tick] Widows Prevent widows.Only protect widows with [100] or fewer letters.
Pull at most [100] letters from the previous line to keep the widow company.
Many thanks for your assistance.
Forum: Plugins
In reply to: [Amazing Hover Effects] Issues with responsive layout on AvadaHi mghb
After many emails I never heard back, so I had to go with an alternative design.
I see there’s a response from 2 weeks ago, but the job had long passed by then.
Hope you have better luck.Forum: Plugins
In reply to: [Amazing Hover Effects] Issues with responsive layout on AvadaHi,
I purchased this 5 days ago, and have been emailing about this question ever since, with absolutely no response.
It’s holding up my whole project. If there is no work around I will require a refund and to look for another solution, but either way can someone please get back to me urgently about this. Your website says you will respond within 12 hours, it’s very unprofessional for you not to reply at all.
Many Thanks
NatalieForum: Themes and Templates
In reply to: Navigation Bar has disappearedThanks for your feedback.
I’ve found that it is an incompatibility with PHP 5.5, and so works when I change the server config back to PHP 5.3I think it may be an issue within this code (found in the theme-functions.php), but I don’t know php and so can’t work out what the problem is. Any assistance would be greatly appreciated!
Many thanks in advance…
https://www.natalienolte.co.uk
class ca_menu_walker extends Walker_Nav_Menu { function start_el($output, $item, $depth, $args) { global $wp_query; $class_names = $value = ''; $classes = empty($item->classes) ? array() : (array) $item->classes; $class_names = join(' ', apply_filters('nav_menu_css_class', array_filter($classes), $item)); $class_names = ''; $output .= '<li id="li-'.$item->ID.'"'.$value.$class_names.'>'; $attributes = !empty($item->target) ? ' target="'.esc_attr($item->target).'"' : ''; $attributes .= !empty($item->xfn) ? ' rel="'.esc_attr($item->xfn).'"' : ''; $attributes .= !empty($item->url) ? ' href="'.esc_attr($item->url).'"' : ''; $item_output = ''; if (isset($args->before)) $item_output .= $args->before; $item_output .= '<a'.$attributes.'>'; if ($depth < 1) { $item_output .= '<strong>'; if (isset($args->link_before)) $item_output .= $args->link_before; if (isset($item->title)) $item_output .= apply_filters('the_title', $item->title, $item->ID); if (isset($args->link_after)) $item_output .= $args->link_after; $item_output .= '</strong>'; if (isset($item->attr_title) && !empty($item->attr_title)) { $item_output .= '<span>'; $item_output .= $item->attr_title; $item_output .= '</span>'; } } else { if (isset($args->link_before)) $item_output .= $args->link_before; $item_output .= apply_filters('the_title', $item->title, $item->ID); if (isset($args->link_after)) $item_output .= $args->link_after; } $item_output .= '</a>'; if (isset($args->after)) $item_output .= $args->after; $output .= apply_filters('walker_nav_menu_start_el', $item_output, $item, $depth, $args); } } function wb_ca_menu() { register_nav_menu('ca_head_menu', __('Header Menu', 'carta')); } add_action('init', 'wb_ca_menu');