155actionplan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WooCommerce Shopping Cart IssueThe shortcode is incorrect on that actual page. Take a look at https://docs.woothemes.com/document/woocommerce-shortcodes/
Forum: Installing WordPress
In reply to: Can't install wordpress to my domainNot very familiar with domain.com, Try and manually install wordpress via ftp, sounds like the hosting or server is rejecting it.
Forum: Installing WordPress
In reply to: Installing old WP site on new serverWhich wordpress versions? Also what php version is the server running? Rare but I’ve had issues where the PHP version isn’t up to date and the global settings is lower than required.
Forum: Installing WordPress
In reply to: Can't access website after updating – FATAL ERRORThere are a few solutions to this:
First login via FTP and replace your wp-admin and wp-includes folders with the previous one you were running(3.5,3.6 etc)A quick google search of “wordpress 3.5 download” or which ever you were on, download the core files and then copy over to your hosting via FTP(overwriting existing files) do not copy over the wp-content it will overwrite all content etc.
Once you try and login via admin it will advise to update your database, follow the instructions.
Let me know of that works
Forum: Plugins
In reply to: [WP-Polls] Integrate polls into commentsIt depends on where you need it added. It could be page.php or another page template on the site. Where you add that code, it’s goin to tell the platform you want to add a comment function. You can hit me up via [ redacted, support is offered via the forums and not e-mail ]
Forum: Plugins
In reply to: [WP-Polls] Integrate polls into commentsGlad I could help!
Forum: Plugins
In reply to: [WP-Polls] Integrate polls into commentsThere is actually a way to do this: `<?php
global $wpdb;
$rez = $wpdb->get_results(“SELECT pollq_id FROM $wpdb->pollsq ORDER BY pollq_id DESC”);
foreach($rez as $poll) {
get_poll($poll->pollq_id);echo “<br /><br /><hr />”;
comments_template(”,true);
}?>`
Just add: comments_template(”,true); after echo of the code you have in your template file or whereever.
Forum: Fixing WordPress
In reply to: HELP!ease…..the way its setup has a dynamic touch for multiple pages in one.
Forum: Fixing WordPress
In reply to: HELP!I tried that, the actual php files pulls CSS styles as well as images from a folder….
Forum: Fixing WordPress
In reply to: Need WP to automatically hold all posts for reviewWhat version of wordpress?