Mike
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: From one host to another – Please help!This is how I handle moving a site from a “test” environment to a “live” environment:
1. Log in to the “test” WP site and change both the WordPress Address (URL) and Site Address (URL) to the “live” address.
2. Log in to the control panel on the “test” site and export the database using phpMyAdmin.
3. Upload a fresh install on the “live” server.
4. Log into the “live” server and import the database dump using phpMyAdmin.
5. Modify the wp-config.php file with any database information changes.
6. Test the site in a browser to ensure the site is coming up.
7. Log into the live WP site using the login credentials setup on the “test” server.Hope this helps.
Forum: Networking WordPress
In reply to: Multisite and Custom Menu'sYou can do this by using a plugin (I use User Role Editor). Select the role of editor and give them the ability to “Edit theme options” and click Update. Now editors will see the theme menu add be able to edit all options there.
Custom menus (at least those created by custom post types) should also be visible for those with the role of editor.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Custom lists are brokenFixed my issue. The problem was the HTML & XML section under the minify settings for W3 Total Cache. Disabled the “Inline JS minification” option and saved the changes. Then re-enabled and saved changes again.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] where are shortcode "code"?@elenis1517 If you are not getting all of the code, you will need to disable the “Skip default values” under Shortcodes > Settings. By default, it hides anything you leave the “default” value when setting up the shortcode.
Forum: Plugins
In reply to: [WP Featured Content Slider] Slide effect with left and right arrowsscrollVert (scrolls down by default) and scrollHorz (scroll to the right by default) offer this ability. Neither is there in the list.
However here is a way to put it in there. You will need to edit options.php to add in a scrollVert option. Find the <select> section and add this above the first option:
<option value="scrollVert" <?php if(get_option('effect') == "scrollVert") {echo "selected=selected";} ?>>Scroll Vert</option>Then to get it to scroll up (by default), edit content-slider.php and add this to <script> area need the top of the file:
rev: 1,Select scrollVert on the options page and things will scroll up and scroll back down when you click the previous button.
It is my hope that the plugin will be updated to have scrollVert and scrollHorz as options instead and a second option be added to scroll up or down. This will set the effect and rev (0 or 1) in the script and allow this feature to be there.
Forum: Plugins
In reply to: [WP Featured Content Slider] Slide effect with left and right arrowsI’m seeing examples of things working correctly over at the jquery cycle site. Not sure why they are not with this plugin.
Forum: Plugins
In reply to: [Paypal Shortcodes] Does not accept UK currencyYou will need to enter it as GBP. Then the plugin will use £ for the currency.
Forum: Plugins
In reply to: [Twitter Tracker] Formatting hashtags/links and user tweet limitI don’t believe these are in there. I’d love the option to target links with a class of mention (@) or hashtag (#).
Forum: Plugins
In reply to: [Twitter Tracker] unordered listThis is very easily done using the following CSS:
ol.tweets { list-style-type:disc; }Forum: Plugins
In reply to: [Twitter Tracker] Styling question@stuart You can use this:
ol.tweets .avatar { display:inline-block;float:left;padding-right:8px; }That will throw the twitter account icon to the left and wrap the tweet around it, with a padding added to the right of the image to give space between the image and text on the text to the left of it.
Forum: Plugins
In reply to: [Shortcodes Ultimate - Content Elements] Issues with WordPress SEOThanks Lisa. 4.4.4 has been released for update and it does in fact allow for enabling custom formatting and disabling compatibility mode 😉
Forum: Plugins
In reply to: [Inline Tweets] No tweets displayedWould love to be able to use such a flexible twitter plugin, but @dreampress is correct. It just displays @ Jan 01. Can this plugin be fixed to work?
Thanks mr_dw. This is the perfect solution to this issue. Much appreciated as I just use this plugin for a client and ran into this very issue.
Forum: Plugins
In reply to: [Posts for Page] Not working for meYou are missing the single quotes around 183 (cat=’183′)
Forum: Plugins
In reply to: [Posts for Page] PaginationFound a post a few down that showed me how to do this:
http://wordpress.org/support/topic/plugin-posts-for-page-feature-request-wp-pagenavi?replies=3