giossicom
Forum Replies Created
-
Forum: Reviews
In reply to: [Table of Contents Plus] New Update fixedYes, thank you very much!
Fixed!
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Critical error after updateI fixed the problem myself, upgrading php to the latest version available at my hosting.
Previous php version was 5.6.32, current is 7.1.11.Hi,
I’m still waiting for an answer, a tip.
Any kind of help is aprreciated.Please have a look here for the error
Thanks,
byeForum: Plugins
In reply to: [YUZO] Exclude by id does not seem to workRelationship?
Maybe you mean the property “Related to”? In this case, Taxonomies.Also these settings might be of any use for you:
Categories on which related thumbnails will appear: All
Exclude category: NoneHi,
in order to workaround the problem, you can follow the steps I listed in my original post, just afterSo, being locked out, what do I do?
Thanks
Done, let’s see what happens in the future :pBye
Hi Gioni,
in your previous answer there is the answer to my problem: use /wp-login.phpIn my life, I always attempted to login using this url:
https://www.thedomain.ext/wp-admin/
and this is what I was using since 10 minutes prior this post o’mine.Reading your answer, I tried to login using
https://www.thedomain.ext/wp-login.php… and it works!
So, as a last information for you, looks like that using the /wp-admin/ folder name to login does not work. Now, it’s up tp you to determine if this is an issue or not :pPS: I made some tests and your plugin works like a charm, also in conjunction with stealth login page plugin.
Thanks for your support.
Forum: Plugins
In reply to: [Redirection] English homepage redirects to a property listingHi imrehg,
Thanks for your answer!I updated the plugin to version 2.4.4 just after leaving my message here this morning.
I made a very small test and looks like the problem is over: let’s see what happen with a “real” post, with draft copies being edited and so on will be in place :pForum: Plugins
In reply to: [Redirection] English homepage redirects to a property listingHi,
same here.
I have a multilanguage website created with WPML.
Every new page or post added to the english language generates a redirect from the “/en/” page to the newest added post or page.
So, for example, the english homepage is
https://www.websiatename.com/en/
When I add a new post in english, the user landing on this page is redirected to
https://www.websiatename.com/en/the-new-post
This is due to the fact that redirection creates a new 301 rule which nobody told to do :p
The issue looks exactly like Honza Felt described.
It started since I use redirection on this website, let’s say november (website is live since november 21st)
EDIT: “Monitor changes to posts” is set to “Modified posts”Forum: Plugins
In reply to: [Contact Form 7] Hot to preselect an item in a select box via url parameterYup! That Worked!
Thank you very much! ^__^Forum: Plugins
In reply to: [Yoast SEO] 3.0.x has ruined my lifeThe worst software upgrade since Windows Vista.
Forum: Plugins
In reply to: [Advertising Manager] [ad] Empty ad slot (#1)! errorJust because I’m an old and long time software developer, I decided to dig the problem and… I found it and fixed.
I don’t know nothing about wordpress, as a developer, and know just bits of php.I’m using a theme which implements in the theme options an advertisment manager. To make my ads work, I had to fill a textfield in the theme options. By doing it, my ads started to work (this happened like 5 minutes after my 1st post).
But… I never liked it, because there is no options around this manager and its general behaviour was not satisfying me…So, today I had 20 minutes to spend for me and…
– I found a file, shortcodes.php, in the “library” folder of the theme.
– in this file I replaced this line
add_shortcode('ad', 'theme_advertisement');
with
//add_shortcode(‘ad’, ‘theme_advertisement’);then I checked what the
function theme_advertisement
really does…
Well, in 5 seconds I decided that It wuold have been better to comment it… LOLFrom this
function theme_advertisement($atts){ extract(shortcode_atts(array( 'code' => 1, 'align' => 'left', 'inline' => 0 ), $atts)); $ad = theme_get_option('theme_ad_code_'.$code); if(!empty($ad)): $ad = '<div class="ad align'.esc_attr($align).'">'.$ad.'</div>'; if(!$inline) $ad .= '<div class="cleared"></div>'; return $ad; else: return '<p class="error"><strong>[ad]</strong> '.sprintf(__("Empty ad slot (#%s)!",THEME_NS),esc_attr($code)).'</p>'; endif; }
to this
/* function theme_advertisement($atts){ extract(shortcode_atts(array( 'code' => 1, 'align' => 'left', 'inline' => 0 ), $atts)); $ad = theme_get_option('theme_ad_code_'.$code); if(!empty($ad)): $ad = '<div class="ad align'.esc_attr($align).'">'.$ad.'</div>'; if(!$inline) $ad .= '<div class="cleared"></div>'; return $ad; else: return '<p class="error"><strong>[ad]</strong> '.sprintf(__("Empty ad slot (#%s)!",THEME_NS),esc_attr($code)).'</p>'; endif; } */
TL;RT
There was another ad catcher in the code, so the advertising manager functionality was overridden by another piece of software, which was set in the theme options (not as plugin).I hope this might help someone else.
Happy codingForum: Plugins
In reply to: [upPrev] Option to show the next post, instead of previousOk, no problem
Thanks for your answerbye
Forum: Plugins
In reply to: [upPrev] Option to show the next post, instead of previousIn the Content section of the plugin options, it’s a section named “Previous entry choose method”.
It basically allows the admin to set which kind of previous post (or entry) should be used in order to show a post into upPrev box.Now, I would like to have the option to choose “next post” instead of previous post and my question was just if there is a plan to add this feature in the next release(s).
I hope I explained better this time :p
Forum: Plugins
In reply to: [upPrev] Box not appearing until about 90% of the way down?Hi Marcin,
had same issue as original poster had.
It’s fixed now, applying you suggestion to delete “#comments”.Bye