carloeucandido
Forum Replies Created
-
I have the same issue, you tagged it as solved but even if I have wordpress last version and taxopress last version, I still see all my uppercase text links automatically converted in lower case
Example: https://www.nominaomina.org/2016/11/dito-a-scatto-prima-e-dopo-cc/
Forum: Plugins
In reply to: [Zotpress] Library not loading, even after trobleshootingAh ok, you were referring to zotero cache: already done that, and as I said I already removed and replaced the entire plugin several times, doing again reconfiguration of the account (like you do when remove and replace only the account).
Unfortunately nothing of that works for me. Thank you for your kind replies.
Forum: Plugins
In reply to: [Zotpress] Library not loading, even after trobleshootingThank you for your reply.
I have a web library, some time ago zotpress was working and I use it since 2015 more o less. Account is set, and reinstalling the plugin several times I had to set it up again and again. Cache: I have not any cache plugin; if you mean browser cache, I tried from different PCs. Removing zotero web library and adding it back? I haven’t done this so far, if you think it could be useful I’m going to try!
Forum: Plugins
In reply to: [Zotpress] Library not loading, even after trobleshootingsorry I posted a protected-content page, but the issue is in the backend
Forum: Plugins
In reply to: [Zotpress] Account information setting wiped updating from 6.2.4 to currentI had the same issue, and zotpress doesn’t allow me to set up a new account connection. No errors shown, only blank page ad synced accounts after setting procedure.
- This reply was modified 3 years, 4 months ago by carloeucandido.
I’ve set my linux cron in my hosting panel (Direct Admin) using this string:
/usr/local/bin/php /home/nominaom/domains/nominaomina.org/private_html/wp-content/plugins/mailpoet/mailpoet-cron.php /home/nominaom/domains/nominaomina.org/private_html/
I’ve checked the php path to be sure it’s the right path.
First, I received this email error:
“PHP Parse error: syntax error, unexpected ‘?’ in /home/nominaom/domains/nominaomina.org/private_html/wp-content/plugins/relevanssi/lib/search.php on line 877”So I deactivated Relevanssi plugin, and now I’m receiving this error:
“MailPoet requires PHP version 7.1 or newer (version 7.4 recommended).”
But I have PHP 7.3.8, so now I’m stuck.`
Hi Bruna,
thank you for your advice. I tried to do what you suggested but isn’t working. I tried all three options of cron jobs.
Today I tried to reinstall, reset and reconfigure mailpoet. I tried again the 3 cron options: no success. In Help > System status says that cron is not accessibleI don’t know what to do, now
Thank you in advance
ClaudioOk Andrew but please note that it’s not about special characters inside the discount code BUT inside the strings associated to discount codes processing, and their translation in the .po / .mo files. So in my opinion any other string passed to jQuery and not escaped for special char could be affected. I’m not a programmer so please forgive me if I’ve written something obvious or wrong.
Hi Andrew and thank you for your kind reply
I’ve SOLVED!
– I already tried with different discount codes, old ones and a new one.
– Yes, there’s a minification.. but the problem is not thereSolution: in italian we use apostrophes… a lot! So the translation of the success string contained an apostrophe and it wasn’t escaped when string is loaded into jquery script!
I removed the contraction mark and now it works…. but now my question becomes: is there any other case where this issue could occur? How many strings could be affected?Probably some time ago I changed my .po file and I didn’t realize I triggered an error, neither my users reported it to me
Forum: Plugins
In reply to: [Gwolle Guestbook] Search form for entriesYes, I came up just with that solution, thank you Marcel! ??
Moreover, I overwrote some strings added by the AddOn (e.g. “Admin Reply”, frontend) in the language .po file, because that strings replacement is not covered by your AddOn toolForum: Plugins
In reply to: [Gwolle Guestbook] Search form for entriesOther suggestion for the AddOn: give some tool to assign moderate_comments rights to some user groups or user roles other than administrator/editor/author
Forum: Plugins
In reply to: [Gwolle Guestbook] Search form for entriesThank you Marcel. I’m just a good copypaster ?? but I know I should try to follow your suggestion.
In the meanwhile, I’ve changed the search query, using the natural language search in mysql
So I added a fulltext index to the guestbook entries table and used this query:SELECT id, author_id, author_name, content FROM wp_gwolle_gb_entries WHERE MATCH (author_name, content) AGAINST (‘”.$str.”*’ IN BOOLEAN MODE)
This made my day. And in fact it’s midnight here ??
- This reply was modified 6 years, 1 month ago by carloeucandido.
Forum: Plugins
In reply to: [Gwolle Guestbook] Search form for entriesI coded my own solution (my variables between ++). I put into a wordpress template the search module and results display:
SEARCH FORM
<?php echo '<form role="search" method="get" id="searchform" class="searchform" action="+my_page_url+"> <h4>CERCA TRA LE RICETTE</h4> <input type="text" value="'; if( isset( $_REQUEST['cerca'] ) ) : echo $_GET['cerca']; endif; echo '" name="cerca" id="cerca" autocomplete="off"/><input type="submit" id="invia" value="CERCA" /> </form></br>'; ?>
RESULTS
<?php if( isset( $_REQUEST['cerca'] ) ) : $str = $_GET['cerca']; $servername = "+my_localhost+"; $username = "+my_username+"; $password = "+my_pwd+"; $dbname = "+my_dbname+"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); $conn->set_charset("utf8"); // Check connection if ($conn->connect_error) { die("Ho un problema con la connessione al Database: " . $conn->connect_error); } $sql = "SELECT author_id, author_name, content FROM wp_gwolle_gb_entries WHERE author_name LIKE '%".$str."%' OR content LIKE '%".$str."%'"; $result = $conn->query($sql); if ($result->num_rows > 0) { echo "<div id='gwolle_gb_write_button'> <a class='button btn btn-default' style='color:#000;' href='+my_page_url+'>Torna Indietro</a> </div></br>"; while ($row = $result->fetch_assoc()) { echo " <div id='gwolle_gb_entries' class='gwolle_gb_infinite gwolle-gb-infinite' data-book_id='1'> <div class='gb-entry gb-entry_2 gb-entry-count_1 gwolle_gb_uneven gwolle-gb-uneven gwolle_gb_first gwolle-gb-first'> <article class='button' style='color:#000;'> <div class='gb-author-info' style='font-weight:bold;'> <span class='gb-author-name'><i class='gb-moderator'>".$row['author_name']."</i> </span> </div> <div class='gb-entry-content'>".$row['content']."</div> </article><br> "; } //end while $result->free(); } else { echo "Mi dispiace, non ho trovato niente con questi termini di ricerca !"; } $conn->close(); else : if( have_posts() ) : the_post(); the_content(); endif; endif; //fine if request cerca ?>
Now I’m buying your add-on because I’d like to have a simply way to customize strings. Hope this little contribution will help and will give some credits to me, to spend in future occasions in which I could need your help! ??
Forum: Plugins
In reply to: [Gwolle Guestbook] Search form for entriesHi Marcel, thank you for your flash reply!
Yes, frontend.
I’m going to try with my own solution, I’m not a coder but I can share my work with you if I’ll be able to get what I need.
It’s the first time of this request probably because I’m trying your plugin for a quite specific use case: I need a single-page wiki with some of my users over a specific topic (exchange of acupuncture recipes!).. a search form is mandatory for this as you can figure out !Forum: Plugins
In reply to: [Theme My Login] Changing profile redirect in login withouth “redirect to”I’ve just done as you said, it was just what I needed.. and it was so easier than I thought! Thank you Jeff!!