Nando
Forum Replies Created
-
Forum: Plugins
In reply to: [FT Calendar] [Plugin: FT Calendar] Generates false 404 errorsThe issue with the 404 error is ’cause is misssing the jquery.tools.min.js in the ft-calendar/includes/js/ directory…you need to download the file https://jqueryb.googlecode.com/files/jquery.tools.min.js to that directory
The Google PR and Bing/Yahoo SEO statics show 404 error with this file, so in my opinion YES affect SEO. I have a IDS in one of my site and show the same missing file on any page
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksSure, I can’t give you details but part of the protection is a .htaccess and a plugin called WP Better Security.
A long URL address is big issue in many cases, and a base64 address too (in some case)
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksOk is offline again, I think I know what the problem is: I have a base64 coded/decoded protection on my site, so any attempt of long URL address and base64 address will be blocked ??
Thanks 4 your help, this plugin is really great but the base64 coded/encoded is give me some problems!
Cheers!
Nando
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksThanks Ben, is online right now in the same adress, take a look.
I’m doing some test with yahoo,gmail and hotmail..Thnaks
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksHi Ben,
I can give you the address of my site but the plugin is offline by now ’cause the email verification issue:
https://www.expresionbinaria.com/boletin-de-novedades/
I’m trying to solve this ’cause I need some newsletter plugin working on my site…
Thanks!
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksIts me again,
I found another issue, again with the base64 encoded url in the email subscription, dont work, I’ve tested with gmail and yahoo…
In the post/page when I try to put inside the content “the subscription form” there’s an issue..guess what?…again base64!! I can not see the form, I can not add styles or modify ’cause stops working
I think you should reconsider the base64 encoding, is giving some problems, but hey is just my opinion! ??
Thanks again!
Nando
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksAnother thing I can mention is that I see no option to clear statistics. Would be very useful to eliminate the statistics in case of cleaning a bit the DB
Cheers!
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] [Plugin: Wysija Newsletters] Encoded linksThanks 4 your reply
I’ve tested on multiple browsers, Firefox, Chrome, Comodo Dragon, IE and with the same results, sometimes work sometimes dont. Email clients where I have tested are Yahoo and Gmail
Maybe I’m wrong but I think the issue is in coding/decoding the URL.
This plugin is really good and has potential, would be good to correct the problem of base64 encoding and add the option to automatically insert the extracts instead of the full content.
Thanks 4 your job!
Best reagrds,
Nando
yes i know but still not working…im done with this ?? ..thanks anyway
thanks but #_BOOKINGFORM is not working
for me is random too…the purpose is to show RELATED post….sad
Forum: Plugins
In reply to: [TooltipGlossary] [Plugin: TooltipGlossary] bug with embed flash objectthe problem seems to be a function in WP-SWObject: swfobject.embedSWF added “HTTP: / / domain.com / video.swf … so if in the glossary has the word “HTTP” generate an error like “Uncaught SyntaxError: Unexpected identifier” in the glossary plugin
any suggestion?
Forum: Plugins
In reply to: [TooltipGlossary] [Plugin: TooltipGlossary] bug with embed flash objectok i guess the bug is with wp-swobject plugin: presentations in flash in post, ’cause youtube videos are showing
this plugin is really nice but have too many bugs…and the developer is missing!
here is a topic with a few improvements:
Forum: Plugins
In reply to: [TooltipGlossary] [Plugin: TooltipGlossary] Modification (enhancement?)ok i changed this from vivahume:
if (get_option('red_glossaryTooltip') == 1) { /* new */ if(!empty($glossary_item->post_excerpt)){ $tip = $glossary_item->post_excerpt; }elseif(preg_match('/\n+/', $glossary_item->post_content)){ $tip = preg_replace('/\n/', '<br/>', $glossary_item->post_content); }else{ $tip = $glossary_item->post_content; } if (str_word_count($tip) > 50) $tip = implode(' ',array_slice(str_word_count($tip,1),0,50)).'...'; $link_replace = '<a class="glossaryLink" href="' . get_permalink($glossary_item) . '" title="Glossary: '. $glossary_title . '" onmouseover="tooltip.show(\'' . addslashes($tip) . '\');" onmouseout="tooltip.hide();">$1</a>'; /* end new */
to this:
if (get_option('red_glossaryTooltip') == 1) { /* new */ if(!empty($glossary_item->post_excerpt)){ $tip = $glossary_item->post_excerpt; }else{ $tip = $glossary_item->post_content; } if (str_word_count($tip) > 50) $tip = substr($tip,0,strrpos(substr($tip,0,250)," ")).'...'; $link_replace = '<a class="glossaryLink" href="' . get_permalink($glossary_item) . '" title="Glosario: '. $glossary_title . '" onmouseover="tooltip.show(\'' . addslashes($tip) . '\');" onmouseout="tooltip.hide();">$1</a>'; /* end new */
this solve the problem with UTF8 encoding…
but the problems persist with style…there are limits ??