djgritz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gallery autostart not workingThank you! I forgot I was using a plugin for that and thinking instead it was a built-in feature for wordpress. I’ve investigated the plugin and found the solution, which is (for those with the same issue):
[gallery gss="1" ids="1,2,3" options="paused=false"]
Where the “options” shortcode controls the autostart. Before it was unnecessary. I guess now it is.
Forum: Plugins
In reply to: [WP RSS Multi Importer] No posts since Sept 2013 importingI should add the that the feed – gritzcine.com/feed – DOES show all posts …
TechDaddyK – I resolved my issue by deleting all the NextGen files (non pro and pro) from my server (as opposed to an uninstall from the WP dashboard, which will also delete your photo galleries). Apparently the “loader.php” issue was a result of a corrupt file. So, give that a try.
And this one …
[26-Mar-2014 19:28:12 UTC] PHP Warning: fopen(/home2/uncompah/public_html/gritzphoto/wp-content/plugins/nextgen-gallery/nggallery.php): failed to open stream: No such file or directory in /home2/uncompah/public_html/gritzphoto/wp-includes/functions.php on line 3666
Yes, here are the items in the log related to NextGen.
[26-Mar-2014 20:54:55 UTC] PHP Parse error: syntax error, unexpected ‘$this’ (T_VARIABLE) in /home2/uncompah/public_html/gritzphoto/wp-content/plugins/nextgen-gallery/nggallery.php on line 242
[26-Mar-2014 19:31:57 UTC] PHP Warning: require_once(class.extensibleobject.php): failed to open stream: No such file or directory in /home2/uncompah/public_html/gritzphoto/wp-content/plugins/nextgen-gallery/pope/lib/autoload.php on line 5
[26-Mar-2014 19:31:57 UTC] PHP Fatal error: require_once(): Failed opening required ‘class.extensibleobject.php’ (include_path=’.:/usr/php/54/usr/lib64:/usr/php/54/usr/share/pear’) in /home2/uncompah/public_html/gritzphoto/wp-content/plugins/nextgen-gallery/pope/lib/autoload.php on line 5
[26-Mar-2014 19:32:12 UTC] PHP Fatal error: Class ‘C_Gallery_Display_Installer’ not found in /home2/uncompah/public_html/gritzphoto/wp-content/plugins/nextgen-gallery-pro/modules/nextgen_pro_slideshow/class.nextgen_pro_slideshow_installer.php on line 4
Forum: Plugins
In reply to: [WooCommerce] Variations not workingI was just pulling my hair out over the same problem where I enter the options in “attributes” but nothing shows up on the drop down menu on the front end. The ticket, as an earlier poster suggested, was that there needed to be something in the “Price” field in the Variations section. Which makes sense, cause without it Woocommerce doesn’t know how much $ to put in the cart when the user selects. Boom! Done. Thank you!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce: Product image sizes not changeingChanging the “width: 100%” to “auto” did not do it for me. But this did. Just before that code is this:
.woocommerce-page #content div.product div.images {
float: left;
width: 48%;
margin-bottom: 2em;
}Change the “48%” to your desired width (in my case it was 600px). Bam! Done.