ddach69
Forum Replies Created
-
Forum: Plugins
In reply to: [CataBlog] Inconsistent Import Results: CategoriesHi mbrsolution!
I know how to format the csv, it’s not an issue with that. I can import the same exact csv file and get different results. It seems to work itself out after 2 or three imports…but it’s strange I have to do it multiple times for it to work.
Forum: Plugins
In reply to: [Testimonials Widget] Plugin has no valid headerReally strange…today when I went back in to begin trouble-shooting, before I did anything, I simply clicked to activate the plugin and now it works…go figure.
Forum: Plugins
In reply to: [CataBlog] Can Catablog be made responsive?Many thanks to mbrsolution for helping me through this.
the image was not actually responsive, it was just small enough to work on my phone’s screen.
After many hours of fiddling, the only way I could find to make everything responsive was to comment out the following areas of the catablog.css file shown below in bold:
.catablog-row .catablog-images-column {
/* float: left; */
/* position: relative; */
}AND
.catablog-row .catablog-images-column /* .catablog-image img */ {
float: none;
max-width: none;
min-width: 0;
max-height: none;
min-height: 0;
}The above changes to the catablog.css file along with the following additions to my child theme’s style.css are what worked:
/* BEGIN SECTION FOR CATABLOG CUSTOM */ .catablog-row { width: auto !important; } .catablog-description { margin: 0 auto 0 auto !important; } .catablog-images-column { width: auto !important; } /* END SECTION FOR CATABLOG CUSTOM */I know it’s better to modify the css via the child theme’s style.css, but I tried every possible combination, including fully copying each offending section into the child theme css, and changing the values to “none”, nothing worked. If anyone has any further ideas, I’m open to hearing them, but I am marking this as resolved.
Forum: Plugins
In reply to: Product Catalog Pluginforgot to mark this as resolved…
Forum: Plugins
In reply to: Product Catalog PluginHere’s what we ended up using, it has the best combination of usability and flexibility: CataBlog
Forum: Plugins
In reply to: [WP Customer Reviews] Adding a Pic – after the factHey, gowebsol – Glad to hear it’s still in the works, keep up the good work!
Forum: Plugins
In reply to: [WP Customer Reviews] Adding a Pic – after the factAny news on version 3? The inability to add images to reviews is the only thing stopping me from using this plugin π
Forum: Plugins
In reply to: [CataBlog] Can Catablog be made responsive?I just submitted a contact form via your site. Thanks for taking a look!
Here’s more info:
-Genesis Framework with Metro Pro child theme.
-WP 4.0Where it’s breaking:
On my phone (Android, LG G2) it looks fine in landscape, but in portrait, the description is completely cropped. I would like to somehow ensure it is responsive in all (or at least most) devices.Forum: Plugins
In reply to: [CataBlog] Can Catablog be made responsive?@ mbrsolution: I see you have a website, can I use your contact form to send the info? The site is under development, and password-protected from viewing.
Forum: Plugins
In reply to: [CataBlog] Can CataBlog be made responsive@ Bob Reeves – Did you ever find a solution to making Catablog responsive?
Forum: Fixing WordPress
In reply to: Show media file name in media browser?Hi porga- Did you ever get this figured out? I too am searching for a way to do this.
Forum: Plugins
In reply to: File Permissions for PluginThanks for all the advice. I’ll have to seriously consider changing hosts.
Forum: Plugins
In reply to: File Permissions for PluginMy hosting is a shared plan. PHP is 5.2.13
The permissions thing has been an issue in the past, my own workaround was to change the effected files temporarily then change them back. I could do that with the XML Sitemap Gen plugin, but then it wouldn’t be able to automatically update the sitemap on the fly, I would have to do it manually after changing the permissions, then change them back.
hmmm, what to do…any advice?
Forum: Plugins
In reply to: File Permissions for PluginWebjunk:
I got the following reply from my host, does their reply seem sound to you?
The files that you mentioned are owned by your username, and by default
they would only be writable by your username. WordPress (or PHP in
general) will not write to files as your username by default. PHP will
write to files using the username nobody. The username nobody is not able
to write to files owned by your username, and vice versa.One way around that is to make your files world writable, but that is
insecure as you mentioned and should be avoided. A better option would be
to instruct PHP to write to files as your username, instead of the
username nobody. That would allow you to set permissions so that only
your username can write to your files, and PHP can still write to them
too. That is done using php-cgiwrap, which is explained here:Forum: Plugins
In reply to: File Permissions for PluginThanks for the reply, webjunk…
According to my FTP client, 646 is:
User: Read/Write
Group: Read
World: Read/WriteI have tried all combinations, and only 646 works with the plugin…The question is: Is using 646 for those two files a serious security risk?