thosecars82
Forum Replies Created
-
Forum: Hacks
In reply to: preventing posts in a particular category from showing upI just tried that. The plugin activated successfully. I excluded a particular category from main page, feeds and archives.
However, I still see the:
– category listed in the categories widget
– the posts in the category listed in the recent posts widget
And those were the links that I wanted to hide from the widgets section.
Is there anything wrong with what I did? or is it just that this plugin is not exactly what I was looking for?Thanks
Forum: Hacks
In reply to: preventing posts in a particular category from showing upHello
I just installed that plugin but I do not know where I can find its settings in the admininstration panel.Forum: Hacks
In reply to: preventing posts in a particular category from showing upThanks, I am going to try that pluging.
Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Don’t you have any idea about why it could be failing?
ThanksForum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.There you have it.
Could anyone please try it and tell me whether there is anything wrong with it?
https://wordpress.pastebin.com/TgDhQQMqForum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.I just created the code myself.
Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Thanks for the information about the code tag.
As for the plugin’s page in WP’s extend page. Sorry, what do you mean?
ThanksForum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Ok, the thing is that i removed the plugin i wanted like you just mentioned. I wanted to remove it because i had not been able to activate it properly and i thought removing it and uploading it again would solve the problem. But i just did so and it did not work.
The plugin has just one file which is the following one. Why is showing a fatal error every time I try to activate it?
[code]
<?php
/*
Plugin Name: Social Networks2
Plugin URI: https://www.domainx.com/
Description: Social Networks 2 Plugin
Author: domainx.com
Version: 1
Author URI: https://wwww.domainx.com
*/
function showLinks()
{
}
function widget_socialNetworks2() {
?>
<h2 class="widgettitle"><?php echo1(_("Find us in:2"));?></h2>
<?php showLinks(); ?>
<?php
}
function socialNetworks2_init()
{
register_sidebar_widget(__('Social Networks 2'), 'widget_socialNetworks2');
}
add_action("plugins_loaded", "socialNetworks2_init");
?>
[/code]Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Question
Does this method have any problem? I mean, removing the folder manually via ftp. I thought that the uninstalling option from wordpress might do some more things besides removing the folder of the plugin.
Thanks
Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Thanks.
I had already tried that before but now that you mentioned, I tried it again just in case but it did not work either.
Any other idea?
ThanksForum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.The following code has not worked either.
[code]
<?phpdefine("FTP_HOST", "https://ftp.domain.com");
define("FTP_USER", "ftpusername");
define("FTP_PASS", "ftppassword");?>
[/code]According to the error message it seems as if the FTP details were not correct because it says that the connection to the server failed even though I am still able to upload files to the server via filezilla.
Any other idea?Thanks
Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Well, I just tried including this code
[code]
<?phpdefine("FTP_HOST", "domain.com");
define("FTP_USER", "ftpusername");
define("FTP_PASS", "ftppassword");?>
[/code]
in the wp-config.php file
with the same values as the ones used in filezilla to upload files to the server. But it seems wordpress does not recognize these ftp details as valid. Why doesn’t it see them as valid? They are the ones that work in filezilla to upload files.
ThanksForum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Sorry but I do not see any extra settings to add my ftp credential in the wp-config.php
?where are they?Forum: Fixing WordPress
In reply to: can't remove plugin. It asks for user and password.Thanks for the answers but:
RoseAppleMedia: Is what you suggest correct in terms of uninstalling completely an installation of a plugin?songdogtech: I do not understand what you mean because my wp-config.php is already configured. Otherwise I could not have installed wordpress. Could you give me more tips?
Thanks both of you.Forum: Fixing WordPress
In reply to: How to remove RSS links from Meta Widget in 2.8Hello
My question is. If you need to modify any file under the wp-includes folder, then you will lose this changes whenever you update to the next WordPress version. As far as I see it, it would be easier if this code default-widgets.php was under wp-content, right? Otherwise, am I missing anything?Thanks