jbottero
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Online Order for Clover] Questions…And, does this plugin bring customer data into to Clover application such that a Clover CRM app would have access to WordPress customer information?
Forum: Plugins
In reply to: [Smart Online Order for Clover] Questions…Just for restaurants? So this plugin would be inappropriate for a brick and mortar shop that sold other things such as – say – perfume?
Forum: Plugins
In reply to: [Smart Online Order for Clover] Questions…Also, what is the difference between this and the WooCommerce Clover Payment Gateway?
Forum: Plugins
In reply to: [WP Customer Area] Modifying the templatesNever mind:
egrep -lRZ ‘Assigned to’ . | xargs -0 -l sed -i -e ‘s/Assigned\ to/Client/g’
Forum: Fixing WordPress
In reply to: Automatic WordPress update failsLooks like a file permission issue. How do you access your files? Something like FileZilla? Or do you have access to your folders with a dashdoard or terminal access?
Sometimes there will be permission issues, like when WP wants to create the upload directory and can’t because of permissions.
My recommendation is to make the owner and the group “apache” – if that’s your web server. At the terminal:
# chown -R apache:apache your-wp-directory-here
But maybe I’m on the wrong track…
Forum: Plugins
In reply to: [Plugin: Events Calendar] Events List and Big Calendar – problems with bothI had exactly the same problems as stated here. I was working with WP version 2.4.something. I installed the latest version of WP (2.6.something) and it worked as advertised, no issues.
Forum: Fixing WordPress
In reply to: Posting Summary on front pageOK, in my default theme, I’ve opened the index.php file and found this:
the_content('Read the rest of this entry »');
and replaced it with this:
the_excerpt('Read the rest of this entry »');
And, in my single.php file, I’ve found
<?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?>
and just before it added this
<strong><?php the_excerpt(); ?></strong>
But there is no change at all.
What am I doing wrong?