cancrime
Forum Replies Created
-
Yes, edited out the “Shared Post” text which appears around Line 63 in the sharedaddy.php file. I did not edit out anything else (left in the “” marks and brackets).
Email sharing still does not work.
Thanks for getting back to me.
Even after updating my site to Jetpack 6.3.2, my email sharing does not work.
Exact same result: On the front end of my site, you can select a post to share by email and send. You’re told the share has been sent but it does not send and is not received. There’s no error message at the front or backend of my site.
Rob
Stef
Thanks for the reply.
I have edited the code in sharedaddy.php to remove “Shared Post” but the edit has not fixed the problem, as it did previously.
When the update comes out next week, I’ll let you know if that update fixes this problem for me.
Rob
Richard
Thanks so much for this.
This small tweak has fixed a problem that has literally taken weeks to debug and correct.
I removed the words “Shared post” from that line of code, so the email with the shared post looks a bit odd, like this
“[]Title of post shared by email”
…but it finally works for me.
thanks again
Thanks so much for the quick reply.
Can I simply remove that entire line of code from the plugin file?
Rob
Forum: Plugins
In reply to: [Data Tables Generator by Supsystic] Update changing functionality?Sorry, ignore this post, problem solved!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Email sharing not workingI’ve been back and forth with my webhost.
First they told me: “Our shared hosting servers do not allow external SMTP to be used.” I’m not sure what this means, with respect to using jetpack for email sharing.
Next, they also told me: “We do restrict access to WordPress’ XMLRPC system for security reasons. It does allow several hits at a time, but for certain plugins, this may not be enough for them to function as expected. If you’d like, we can disable the mod_security rules that restrict XMLRPC calls for the site.”
So, I asked them to disable these security rules (though I had asked this before).
They assure me the security rules have been disabled, but, jetpack email sharing is still not working.
Rob
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Email sharing not workingI have forwarded your information to my webhost.
I’ll get back to you once they respond to me (they had assured me, recently, that any security they had in place to block access to xmlrpc.php was lifted)
thanks again for the quick response
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Email sharing not workingThanks for the reply Richard.
I have disconnected and re-connected my site to Jetpack, but this did not resolve the email sharing problem.
I have asked my webhost (A2) if my server is sending those sharing emails. No reply yet.
Forum: Themes and Templates
In reply to: [Shop Isle] Change menu button width in mobile?Figured it out myself, but thanks anyway
Forum: Themes and Templates
In reply to: [Shop Isle] No Description on About and Contact pagesIf by “description” you mean a field where you can add your own custom text, you’ll have to edit the template. I did that with the ABOUT US template, by trial and error (I’m not a coding expert) and found that it’s fairly easy to add some code to the template which will allow you to add content to the page in the regular WP backend page editor. I decided I don’t need the “Features” module at the bottom of the about us page, so I replaced it with this:
<!– Features start –>
<?php
$shop_isle_content_aboutus = ”;
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
$shop_isle_content_aboutus = get_the_content();
}
}if ( trim( $shop_isle_content_aboutus ) != ” ) {
echo ‘<section class=”module”>’;
echo ‘<div class=”container”>’;
echo ‘<div class=”row”>’;
echo ‘<div class=”col-sm-12″>’;
the_content();
echo ‘</div>’;
echo ‘</div>’;
echo ‘</div>’;
echo ‘</section>’;
}
?>
<!– Features end –>Forum: Plugins
In reply to: [MailPoet - Newsletters, Email Marketing, and Automation] Fatal ErrorI got a similar error to Roberto.
Then my site went down (both front and backend), telling me “internal server error.”
Should I go in by FTP, disable Mailpoet and then update to 3.0.3? Is there any danger I’m going to lose data (subscriber list, draft emails, etc)?
Rob
Forum: Plugins
In reply to: [Flexy Breadcrumb] Change HOME button behaviour?Thanks for the very quick response.
I pasted in that code change.
The font awesome HOME icon disappeared from the display and clicking on “HOME” returned a 404 error.
So I pasted the original code back in and then my WP backend told me that the plugin “does not have a valid header.”
I figured I’d just delete it and re-install, but after deleting the plugin, I’m left with what looks like shortcode text in the position on top of a single post [flexy_breadcrumb]. See it here:
Forum: Themes and Templates
In reply to: [Shop Isle] Pages displayed on the HeaderIf you mean “menu” when you say “header” it may simply be a setting in your MENU tab in your WP dashboard.
Go to Menus (to the EDIT MENUS tab) and near the bottom of that screen is a checkbox:
“Automatically add new top-level pages to this menu” Make sure it is NOT checked, or every page you create is automatically added to your menu. When de-selected, pages don’t show in your menu unless you put them there manually.