d
Forum Replies Created
-
Forum: Plugins
In reply to: [SrbTransLatin - Serbian Latinisation] An error is showing with 1.53I see you fixed it with 1.53.1. ?? Thanks!
Forum: Fixing WordPress
In reply to: Plugin (wpas) causing admin-ajax.php errorI have the same issue.
How about this?
1) Comment out the middle wp_enqueue_script in init.php —
line 42:
// wp_enqueue_script( ‘wpas-admin-ajax’, admin_url( ‘admin-ajax.php’ ), array(), ‘1’, false );2) Then inside js/scripts.js —
line 156:
replace
url: WPAS_Ajax.ajaxurl,
with
url: “/wp-admin/admin-ajax.php”,The error is gone for me and everything seems to be working fine.
Hope this helps.
Forum: Plugins
In reply to: [Contact Form 7 Modules] Notice: WPCF7_Shortcode – ErrorsHere’s the link for it. Towards the bottom… https://contactform7.com/2016/12/03/contact-form-7-46/
Forum: Plugins
In reply to: [Display Posts - Easy lists, grids, navigation, and more] Last 6 MonthsThank you!
Forum: Plugins
In reply to: [Polylang] Image Captions – Simple SolutionHi Gon?alo & Chouby,
Outstanding! Works great. But… How can the same be done for Title, ALT Text and Description?
Can you point me in the right direction? I see caption is simple ‘caption’. Is that true for Title, ALT Text and Description?
Can I just replicate this code three more times for each field?
Thanks
DavidForum: Plugins
In reply to: Language Swtcher – Show /Hide in SidebarI figured it out…
<?php
$languages = pll_the_languages(array(
‘show_flags’=> 1,
‘raw’ => 1,
‘hide_if_no_translation’ => 1,
‘show_names’=> 1,
‘hide_current’=> 1,
‘hide_if_empty’ => 1,
‘force_home’ => 0,
‘hide_if_no_translation’ => 1
));
if ($languages == true ){
if (get_locale() == ‘en_US’) {
echo ‘<section class=”widget widget-related-content custom-sidebar”><h3>Translation</h3>- ‘;
} else {
echo ‘<section class=”widget widget-related-content custom-sidebar”><h3>’.pll__(‘Translation’).'</h3>- ‘;
- ‘. $lang[‘flag’] .’ ‘ . $lang[‘name’] . ‘
}
foreach ($languages as $lang) {
echo ‘‘;
}
echo ‘</section>’;
};
?>Forum: Plugins
In reply to: [Polylang] Language Swtcher – Show /Hide in SidebarI figured it out…
<?php
$languages = pll_the_languages(array(
‘show_flags’=> 1,
‘raw’ => 1,
‘hide_if_no_translation’ => 1,
‘show_names’=> 1,
‘hide_current’=> 1,
‘hide_if_empty’ => 1,
‘force_home’ => 0,
‘hide_if_no_translation’ => 1
));
if ($languages == true ){
if (get_locale() == ‘en_US’) {
echo ‘<section class=”widget widget-related-content custom-sidebar”><h3>Translation</h3>- ‘;
} else {
echo ‘<section class=”widget widget-related-content custom-sidebar”><h3>’.pll__(‘Translation’).'</h3>- ‘;
- ‘. $lang[‘flag’] .’ ‘ . $lang[‘name’] . ‘
}
foreach ($languages as $lang) {
echo ‘‘;
}
echo ‘</section>’;
};
?>Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Redirects – Based on radio selctI figured it out. Use conditions in multiple redirect processors. Perfect!