Sal Ferrarello
Forum Replies Created
-
Forum: Plugins
In reply to: [Stop Emails] Will the stopped emails be sent if the plugin get deactivated?Hey Bardia,
I hope I answered your question. Since there hasn’t been any further activity on this thread, I’m going to mark it as resolved.
If you have any further questions feel free to open a new thread.
Thanks.
– Sal
Forum: Plugins
In reply to: [Stop Emails] How to disable temporarily ?Hi zagriyen,
The way this plugin works, I’m not sure if you can temporarily disabled it.
The plugin works by replacing the global $phpmailer with an instance of Fe_Stop_Emails_Fake_PHPMailer.
Theoretically, something like the following might work but this is just an idea, not tested code.
global $phpmailer; // restore $phpmailer to non-stopped version $phpmailer = new PHPMailer; // send your email here // start stopping emails again $phpmailer = new Fe_Stop_Emails_Fake_PHPMailer;If this or another solution works for you, I’d certainly be interested in hearing about it.
Best of luck.
Forum: Plugins
In reply to: [Stop Emails] Will the stopped emails be sent if the plugin get deactivated?Hi Bardia,
Thanks for your question.
Emails stopped by this plugin are never sent. When the plugin is deactivated, any new emails will be sent but those that were stopped previously are gone forever.
Forum: Fixing WordPress
In reply to: Can a post be moved to another page?1. You don’t need pages for ‘Dogs’ ‘Cats’ ‘Horses’. By creating categories for them, WordPress automatically creates archive pages for each of them. It sounds like you’ve done this already.
2. You’ll need to create a new page, I would name it “Home”. This will be the page you choose as your static home page. It sounds like you’ve done this already.
3. It sounds like you’re not seeing your automatically generated Category archive pages. You can find the permalinks for them by going to
example.com/wp-admin/edit-tags.php?taxonomy=category(replace example.com with your website) and clicking the View link for the category.
Here is a screenshot for reference: http://imgur.com/HAh8fKDForum: Localhost Installs
In reply to: Cannot retrieve Username/Password for local offline WordPress siteCitadel,
Two things come to mind.
1. Make sure you are modifying the correct database. Check your wp-config.php file database settings and make certain these match the database you are modifying.
2. If you’re resetting your password via phpMyAdmin, make certain you’re not forgetting to use MD5 when storing your password. Looking at the entry in phpMyAdmin you should NOT be able to see your password (it should be encoded to a string that looks like gibberish).
Once you have done that, click the dropdown menu indicated, and select MD5 from the menu.
Forum: Fixing WordPress
In reply to: Can a post be moved to another page?Yes, you can setup a static page for your homepage. Information on how to do that is at http://codex.wordpress.org/Creating_a_Static_Front_Page
It sounds like you’ll want to setup three categories, “Dogs”, “Cats”, and “Horses”.
When adding items to your Menu (at Appearance > Menus), in the Categories section you can choose the categories you created.
See http://imgur.com/LuioHhuForum: Fixing WordPress
In reply to: How to change the "Remove from Shopping Cart" icon?Hi Little-Acorn,
These forums are focused on general WordPress questions and since your question involves a specific plugin, this isn’t the best place to get assistance with it.
It looks like Easycart has support resources on their website http://www.wpeasycart.com/.
I’d start with http://www.wpeasycart.com/docs/3.0.0/index/index.php and if you can’t find your answer there I’d then try http://www.wpeasycart.com/forums/.
As a final resort, I’d enter a support ticket at http://www.wpeasycart.com/support-ticket/
Best of luck.
Forum: Localhost Installs
In reply to: Cannot retrieve Username/Password for local offline WordPress siteI expect the problem is MAMP is not sending out emails, so “email new password” will not work.
You can update your password directly in the database.
Here are some instructions from WP Engine.
http://wpengine.com/support/how-do-i-reset-my-password-to-log-into-wordpress/The first step is specific to WP Engine but once you access phpMyAdmin, the steps should be the same from there.
Forum: Fixing WordPress
In reply to: Embed Code Not working for videoHi hawraar,
The code from your second post is working for me (your first has an extra line break after “height:”).
To add this code to your page, you need to be in Text mode (not Visual mode). See controls highlighted on http://i.imgur.com/20Hflp1.jpg
Then paste the iframe code directly on the page (refer to image)In the future, please create a new support ticket rather than replying to an existing one. It will help others reply to it more quickly.
I hope this helps.
Forum: Fixing WordPress
In reply to: Cant find dynamic robots.txtI’m guessing the iThemes Security plugin and htaccess rules is causing this behavior.
I suggest:
1. make a backup file of your .htaccess file
2. turn off the iThemes Security plugin
3. confirm your .htaccess file has updated removing the iThemes lines (it should look like http://pastebin.com/vg37Pit0)
4. Check http://stj23.com/robots.txt and http://208.167.238.68/~valorblo/stj23.com/robots.txtForum: Fixing WordPress
In reply to: Permalinks – How to publish specific blogs with out the date in URLThe short answer is WordPress does not do this.
I am not familiar with a way to display some blog posts with the Day and name format, while others display with the Post name format.
One option is to use a Page instead of a post, which displays without the date in the Permalink regardless of the Permalinks setting.
If this is something you absolutely need to put in place, I’d suggest contacting a web developer who can help you choose and configure an appropriate plugin or create the necessary custom code.
Before moving forward with this, I suggest evaluating if this is absolutely necessary as having inconsistent Permalinks can be confusing for users.
Forum: Fixing WordPress
In reply to: Cant find dynamic robots.txtCan you please repost your .htaccess file using http://pastebin.com/ or https://gist.github.com/
Forum: Fixing WordPress
In reply to: Cant find dynamic robots.txtI’m not sure what is going on but here are the next steps I’d suggest for troubleshooting.
1. While logged into your WordPress site, I’d go to Settings > Reading and confirm Search Engine Visibility is UNchecked.
2. I’d create a new file called test.txt in the stj23.com root directory that contains the words “Test file”
I’d then confirm this file is accessible at both
http://stj23.com/test.txt
and
http://208.167.238.68/~valorblo/stj23.com/test.txt3. Can you please post the contents of your .htaccess file
Forum: Fixing WordPress
In reply to: Cant find dynamic robots.txtI’m not seeing a website at http://thewebsite.com/, I’m getting redirected to http://thewebsite.com/cgi-sys/defaultwebpage.cgi
For future reference, creating an actual robots.txt file should always override the WordPress generated robots.txt response. The htaccess rules for WordPress only execute if the file does not exist.
Forum: Fixing WordPress
In reply to: Links keep showing upGlancing at a couple of pages, I’m not seeing any of the links you’ve described.
Is there a specific URL where you are seeing the links?