nexusfred
Forum Replies Created
-
Forum: Plugins
In reply to: [Frontend Admin by DynamiApps] Show form but disabledHello, any news about this question ?
Thanks a lot.
Forum: Reviews
In reply to: [WP Dummy Content Generator] No Featured ImagesThanks, renaming this option to “Featured Image” will be less confusing;)
Hello,
what do you mean by “custom templates”?Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Format search results ?To bad ;-(
It’s a very nice plugin to display table.
ThanksForum: Plugins
In reply to: [Advanced Custom Fields: Extended] Taxonomy to Taxonomy TermsThanks !
Forum: Plugins
In reply to: [Geolocation IP Detection] No information has been found for the IP ?HostIP.info as datasource and yes I get information for 8.8.8.8.
Forum: Plugins
In reply to: [Advanced Editor Tools] Stop removing custom tagThe PHP solution half work because TinyMCE still removing class from the custom tag 🙁
Forum: Plugins
In reply to: [Advanced Editor Tools] Stop removing custom tagI found a PHP solution:
https://gist.github.com/BronsonQuick/3615651
<?php /* * Our client needed some data sent in XML tags from Gravity Forms notifications to their system. These tags were being stripped by * TinyMCE when the client would switch from HTML to Visual. This was my fix for it. * */ function sennza_add_custom_tinymce_tags( $init ) { // Command separated string of extended elements $ext = 'mytag1,mytag2'; // Add to extended_valid_elements if it alreay exists if ( isset( $init['extended_valid_elements'] ) ) { $init['extended_valid_elements'] .= ',' . $ext; } else { $init['extended_valid_elements'] = $ext; } // Super important: return $init! return $init; } add_filter('tiny_mce_before_init', 'sennza_add_custom_tinymce_tags');Forum: Plugins
In reply to: [Admin Columns] Combine tow columnsOk thx I will wait 😉
Forum: Plugins
In reply to: [A-Z Listing] WP Super Cache + Android issueI think I found a problem between:
AZ-Listing Version 3.1.2
Cookie Notice & Compliance for GDPR / CCPA Version 2.0.3
WP Super Cache Version 1.7.2AZ-Listing Version 3.1.2 + WP Super Cache Version 1.7.2 = OK
Cookie Notice & Compliance for GDPR / CCPA + WP Super Cache Version 1.7.2 = OK
If the 3 are enabled I have a “white screen of death” on refresh, but only on Android (Chrome or Firefox)Web Config
PHP 7.2
WordPress 5.7Forum: Plugins
In reply to: [A-Z Listing] WP Super Cache + Android issueI have made a custom integration of A-Z Listing. I will install a clone of my website and make more tests. I can’t see what can affect only on Android.
Forum: Plugins
In reply to: [Calculated fields for ACF] Live refresh and Range fieldsHello,
a range generate 2 inputs.<div class="acf-range-wrap"> <input type="range" id="acf-field_5ff8dfc7496ec" name="acf[field_5ff8dfc7496ec]" value="5" min="1" max="5" step="0.5"> <input type="number" id="acf-field_5ff8dfc7496ec-alt" value="5" step="0.5" style="width: 3.55em;"> </div>In the formula how can I target the second?
Regards
Nexus- This reply was modified 5 years, 5 months ago by nexusfred.
I have the same issue using a business manager.
I had to downgrade the plugin to the previous version 2.2.2.Forum: Plugins
In reply to: [A-Z Listing] CSS file missing in a custom archive pageAmazing, you have planned everything.
Thanks a lot!!