Tagged: x
-
AuthorPosts
-
March 19, 2017 at 2:57 am #1412554
hello there,
i have installed plugin [ Ultimate Social Media PLUS ]
and get this error msgwhat to do ?
this regarding add sharing icons – if you have other methods tell me –
i tried jetpack sharing feature – but failed to activate the feture so i had to use extenral plugin
thanks
March 19, 2017 at 2:57 am #1412555This reply has been marked as private.March 19, 2017 at 2:54 pm #1412902one more question, why there’s no option to edit the theme inside wordpress dashboard as default – can this be enabled >?
waiting your help
thanks
March 19, 2017 at 7:16 pm #1413027Hi There,
Did you forgot to pasted the error message? I did visit your site and I can’t see any error.
We do have Social Sharing element. See this:http://demo.theme.co/ethos-1/shortcodes/entry-share/
When you say edit theme, are you referring to editing the theme template file or are you looking for settings on Appearance > Customizer? Please clarify.
March 19, 2017 at 11:37 pm #1413220hello there,
I didn’t forget, but the error msg as the title caused by a plugin mentioned.
regarding editing,
no, my question is normally on wordpress theme – there is an option under appercine called “edit theme”
which make it easy to select from drop down list “header.php” etc.. and edit if needed.
regarding the social sharing,
by this shortcode – Don’t I have to post it every time under the post which make it diffuclt – i need it to be there automaticly under every post
thanks
March 20, 2017 at 8:52 am #1413630Hi there,
For the issue with Social Media Plus plugin, regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.
Would you mind sharing the shortcode that must be added so the social sharing icons will be displayed so that we can provide you with the code?
Thank you.
Thank you for your understanding.
March 20, 2017 at 11:33 pm #1414586thanks for your replay.
the shortcode same as this page you’ve posted
http://demo.theme.co/ethos-1/shortcodes/entry-share/
question: will number of shares will be displayed ?
another question: can share via whatsapp be added through ?
main question: how to insert this shortcode below every post.(post is enough – not nessesery pages of the blog)
thanks
March 21, 2017 at 9:09 pm #1415754Hi There,
You wrote: my question is normally on wordpress theme – there is an option under appercine called “edit theme”
Do you mean the Appearance > Editor, normally WordPress has that but some hosting installed WordPress does not include it. Its not recommended anyway because if you get a syntax error from editing or adding a code you wont be able to access that editor anymore for you to correct the said error. It would be best if you use FTP.
question: will number of shares will be displayed ?
another question: can share via whatsapp be added through ?
Regretfully, that would require a custom development which fall outside of the support we can offer.
main question: how to insert this shortcode below every post.(post is enough – not nessesery pages of the blog)
Login to your server via FTP, and navigate to this directory \wp-content\themes\x-child\. Add the code below on your child theme’s functions.php file.
/** Add social share in the end of the post every post */ add_action( 'x_before_the_content_end', 'add_to_single_posts' ); function add_to_single_posts() { if ( is_single() ) { echo do_shortcode( '[Ultimate Social Media PLUS SHORTCODE HERE]' ); } }
Replace the [Ultimate Social Media PLUS SHORTCODE HERE] with your actual shortcode.
Hope it helps, Cheers!
-
AuthorPosts