patowins
Forum Replies Created
-
I have done some tests and the problem no longer appears. problem.
It has worked code in wp-config.php
Thank you so much!
- This reply was modified 5 months, 3 weeks ago by patowins.
Now the problem arises with images of any dimension. Is there a solution or am I looking for another plugin?
X2 I also have this problem with smaller photos
Forum: Plugins
In reply to: [Strong Testimonials] Featured Image showing BrokenI had the problem with the images. They were not displayed and after doing several tests, it worked for me by changing the ‘Ajax Page Loading’ to General but leaving ‘Load Event’ in document ready (default)
Thanks @beatrice12 for the suggestions!
The suggestion helped me!
Thank you so much!- This reply was modified 8 months, 3 weeks ago by patowins.
Finally the problem was the permissions on the page that displayed the profile.
Thanks for your time.great news!
thank you!
Did you try using the “Countdown” theme from the plugin?
Forum: Plugins
In reply to: [Car Dealer (Dealership) and Vehicle sales] Add a new currencyThank you very much !
Forum: Plugins
In reply to: [Car Dealer (Dealership) and Vehicle sales] Add a new currencyThank you very much for the availability.
Country: Chile
Name of the currency: Pesos Chilenos
Simbol: $I did it like this:
function mostrar_frases_mas_buscadas($atts) { global $wpdb; $seven_days_ago = date('Y-m-d', strtotime('-7 days')); $phrases_searched = $wpdb->get_results( "SELECT phrase, hits FROM $wpdb->dgwt_wcas_stats WHERE created_at >= '$seven_days_ago' ORDER BY hits DESC LIMIT 3", OBJECT ); // Genera el HTML para mostrar las frases más buscadas con enlaces de búsqueda $html = '<div>'; $last_index = count($phrases_searched) - 1; foreach ($phrases_searched as $index => $phrase) { $capitalized_phrase = ucwords($phrase->phrase); // Capitaliza la frase $search_url = esc_url(add_query_arg('s', $phrase->phrase, home_url())); $html .= '<a href="' . $search_url . '">' . $capitalized_phrase . '</a>'; if ($index !== $last_index) { $html .= ', '; } } $html .= '</div>'; return $html; } add_shortcode('frases_mas_buscadas', 'mostrar_frases_mas_buscadas');
to show the most searched for the last 7 days, using the shortcode: [frases_mas_buscadas]
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] How do I update?I must understand that, in the free version, pictures cannot be displayed and that the paid version also has problems?
Yo probaría volviendo el plugins a la versión anterior con https://es.www.ads-software.com/plugins/wp-rollback/
También trataría de plantear el problema en inglés, creo que por eso no te han respondido.
Forum: Plugins
In reply to: [Date counter] Mostrar fecha actualSi tienes la posibilidad de un widget en la cabecera de tu sitio, debes insertar un shortcode como el indicado por el creador del plugin.
[CurrentDatetime format="d/m/Y H:i"]
Mostrará la fecha y hora actual.