I have hundreds of posts on my wordpress site, many of which contain outdated ejunkie buttons I added with html code. How can I search my wordpress site for this html so I can remove the outdated button code?
Thank you!
Here is an similar Question: https://wordpress.stackexchange.com/questions/188384/how-to-mass-delete-one-line-from-all-posts
The answer should be suitable for your problem.
Related
Hoping someone can be able to assist. So I am working on a Wordpress site that has woocommerce, my concern is that the shop page uses its own theme, and I want it to be all the same (hope I am making sense) for an example my shop page header (including menu responsiveness) is completely different to the rest of the site. How can I fix this? I am not really good at coding hoping someone will be able to provide a more understandable solution. Thanks
You can customize Woocommerce shop page by editing Woocommerce shop page template as described on the below articles.
https://www.woothemes.com/2014/08/five-quick-woocommerce-customization-tips/
https://docs.woothemes.com/document/template-structure/
https://github.com/woothemes/woocommerce/tree/2.5.0/templates
Easy way to solve the issue with its document.
https://wpastra.com/elementor-woocommerce-theme/
I have read trough all Fishpig problems, but none of the solutions work for me ;(
I have added the Fishpig extension and all works fins, BUT that the Store template is not being used. Basically all you see is the blog display only (not very ordered and nice - text should be centered).
I am stuck and do not know what can be causing this. Any ideas?
Site is:
http://www.malamujer.es/index.php/blognews
THANK YOU!
You must be using a root template that doesn't include the header, sidebars and footer as these elements are not on this page what so ever.
For some reason, some of the shortcodes of some of my plugins show up as text on my pages. Could somebody please provide me with possible reasons why this is happening. The main plugins which are causing problems are:
https://wordpress.org/plugins/users-ultra/
wordpress.org/support/plugin/front-end-pm
I have also used the plugins individually, deactivated all of my other plugins one by one and they still show up as text. Any help would be greatly apreciated.
Thanks
This should help you:
do_shortcode('[shortcode]');
Put this in your theme file where you want the widget/what ever it is you want to do to appear.
I've tested the two plugins in wordpress 4.0 and it works fine.
Did you try to update your wordpress version?
If the problem persists, try to switch to the Twenty Eleven theme to see if it's not a theme-specific problems
Make sure you are editing in the text tab, and not HTML.
You can go to the HTML Tab and see if its wrapping your shortcodes in tags, as this has caused problems for me in the past.
Cut the shortcode from the "Visual/HTML" tab and pasted in "Text" section then updated Post.
#Kristofer is correct if you're looking for a template-based solution, except it needs to be
echo do_shortcode('[shortcode]');
not just
do_shortcode('[shortcode]');
It will just display as text if the shortcode is not correct. For example, in the Tag Groups plugin, the premium shortcodes will not display anything.
I am working on a WordPress site for a client and want to know where the styling for the blog would be located. The blog can be viewed here http://ruthcrocker.whoistheoldguy.com/blog/. Pretty much what I want to do is make the whole blog page narrower and centered to match the styling of the rest of the site. Then place the categories and subscribers to the right and have the most recent blog posts in the middle. Does anyone know how this can be achieved?
See Theme Development in the Wordpress Manual.
The basic stylesheet is located here:
http://ruthcrocker.whoistheoldguy.com/wp-content/themes/ruth/styles/style.css
But I would have a look at:
http://codex.wordpress.org/Theme_Development
For development instructions and advice
I have a website and a blog. I want to insert an iframe into the website, displaying the latest post from the blog.
So I need just the post content inside the iframe, without wordpress headers and sidebars.
Whats the best approach to achieve this?
Thanks for help.
If the site and the blog are on the same domain, you may be best off querying the latest post using the Wordpress API itself, making it unnecessary to fiddle with an iframe.
How to do that is described in Integrating WordPress with Your Website on the WordPress Codex.
If you need to do this using an iframe, I guess it's easiest to set up a new theme that doesn't display anything but the post itself. That would be some work though.
I recently put together a video tutorial of how I did this: http://www.youtube.com/watch?v=7GuocgQlCmw
I didn't get rid of the WordPress sidebar, but the tutorial shows how I used Firebug to get rid of parts of the header and the same technique should work for the sidebar. There are links in the youtube description to all the reference material I used including a link to a blog entry I wrote describing the process.
This doesn't really answer the question but why don't you use Wordpress for all of your website if you use templates you can make it look like a website and also have a blog. Have a look at this site i made using just Wordpress http://www.smkrc.co.uk. By doing this you would have access to the posts and would not need to use iframes.