blogodisea
Forum Replies Created
-
Forum: Plugins
In reply to: [WebP Express] When no conversion metho appearsDidn’t understand what the support told me:
“Imagemagick is installed on our shared servers already it can be accessed from the shell at /usr/bin/convert GMgaick isn’t installed by should be able to just like alternative versions of imagemgaick can be installed on the servers using a custom PHP environment.”
They say Imagemagick is already installed on the server but Webp express doesn’t shows it enabled in the conversion method.
Don’t know if i have to do anything else to install it finally.
Forum: Plugins
In reply to: [WebP Express] When no conversion metho appearsThank you, i was looking for a free solution, as i moved the site to a shared server cause i can’t monetize the site.
Your plugin is the one that works like a charm, so i’ll try sending that letter to the host.
Thanks a lot for your work, regards.
Forum: Plugins
In reply to: [WebP Express] Alternatives to the pluginThank you, sorry for the misunderstood, it seems i readed was discontinued, but they must be wrong. Regards.
Forum: Plugins
In reply to: [Broken Link Checker] Update 1.11.13 broke the siteI deleted the blc_filters, blc_instances, blc_links and blc_synch tables from the database and reinstalled the plugin again.
I checked the options and selected the “nuclear option” for resetting the plugin so it deletes the link database and re-check the whole site from scratch.
In this moment is working fine, don’t know if later will paralyze.
Forum: Plugins
In reply to: [Broken Link Checker] Update 1.11.13 broke the siteHello, thanks for fixing it soon. The problem is that i can’t deactivate the plugin as the site was broken. I assume that this will happen to more people, don’t know if we can access the plugin panel while the plugin is working, so it will be impossible to deactivate.
I had to take off the Broken Link Checker folder from the plugin folder to activate the site again.
So the tables blc_filters, blc_instances, blc_links and blc_synch (and there will be in option table too i imagine) are still there.
Can we just delete these 4 tables and install the plugin again? Don’t know if the options table that keep old records of the plugin will make any problem.
Thanks a lot for your work.
Forum: Plugins
In reply to: [Broken Link Checker] Update 1.11.13 broke the siteMy site also was offline when i updated the plugin, it got stucked. I also deactivated it till there’s a solution. Good plugin and good work, a pity the plugin had a problem today.
Forum: Themes and Templates
In reply to: [GeneratePress] Link in comment nameSorry, didn’t made a child theme before, maybe i will try.
Aside that, i found a solution that can be helpful for more people to control spam comments. It has to be added to functions.php
1) This code will unlink any old comment author name from the blog:
function no_comment_author_url( $url, $id, $commentr ) {
return “”;
}
add_filter( ‘get_comment_author_url’, ‘no_comment_author_url’, 10, 3);2) And this code will take off the field URL when a user is leaving a comment. This way there’s no way to introduce spam URLs in any new comment.
add_filter(‘comment_form_default_fields’, ‘website_remove’);
function website_remove($fields)
{if(isset($fields[‘url’]))
unset($fields[‘url’]);
return $fields;}Forum: Themes and Templates
In reply to: [GeneratePress] Link in comment nameThank you, i added the code to funtions.php but it didn’t worked.
Still didn’t made any child theme for GeneratePress, don’t know if that has something to do for not working.
Forum: Plugins
In reply to: [WebP Express] WebP Express reverts to factory settings after updating postIs happening the same for me, but i’m not sure if it’s because of publishing new post. Isn’t this fixed yet?
Forum: Themes and Templates
In reply to: [GeneratePress] Line space after videoForget it, sorry, i tried this and it worked.
.wp-video-shortcode {margin:0 0 30px 0;}
Last time i tried, it didn’t worked, maybe some cache was confusing me.
Forum: Themes and Templates
In reply to: [GeneratePress] Hide navigation menuSo is there a way to hide the navigation bar for desktop users applying hide-on-desktop class to the navigation section?
Forum: Themes and Templates
In reply to: [GeneratePress] Hide navigation menuThank you, i will look for it then.
Forum: Themes and Templates
In reply to: [GeneratePress] Hide navigation menuBut as i’m using the same menu for both situations, with child and grandchild items, the mobile menu looks bad.
It will me good a way to make decisions, so if you are a desktop user, it will show the menu 1 for example, and if you are mobile user, it will show the menu 2 (with no child or grandchild items).
Forum: Themes and Templates
In reply to: [GeneratePress] Hide navigation menuThank you, it worked at least for not showing all categories in the desktop. But as i don’t like the way it shows the list, i’m wondering if it’s possible to make two types of menus and show one type of menu for mobile or tablet users, and the other type for desktop users.
My problem is that i have a big number of categories and i don’t know how to show them the way i want. I know that in mobile or tablet small screens, there’s no a better way to show a large list of categories, but i would like to show the large list of categories the way it describes here: https://docs.generatepress.com/article/building-simple-mega-menu/
The problem is that this mega menu is ok for desktop users, but is ugly and not useful for mobile or tablet users. Don’t know if there’s a way to show one type of menu for mobile or tablet users and another type of menu (mega menu) for desktop users.
Forum: Fixing WordPress
In reply to: Since WordPress 3.5 cannot change img attributesWhat? It’s nothing about the plugins, WordPress is OK. I’m telling about something to hack the way that WordPress insert the html of the images.
Normally it makes something like this
<img src=”URLOFTHEIMAGE” width=”WIDTHOFTHEIMAGE” height=”HEIGHTOFTHEIMAGE” Class=”CLASS” alt=”NAMEOFTHEIMAGE”>and i want to make this one
<img src=”URLOFTHEIMAGE” width=”WIDTHOFTHEIMAGE” height=”HEIGHTOFTHEIMAGE” title=”NAMEOFTHEIMAGE” alt=”NAMEOFTHEIMAGE”>
The hack code i was using in functions.php worked fine, but now it’s not working since the new 3.5 version.