Userkan232
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change URL path of pre existing mediaI did that for each year and month that I have uploads for but for some reason that still does not update all the links. It does update some, but some are still the same.
Forum: Fixing WordPress
In reply to: Attached PDF’s and docs in media not displaying in postsThanks for the help so far!
So I added this to post-template.php
add_filter( 'the_content', 'addDocShortCode'); /** * Add a icon to the beginning of every post page. * * @uses is_single() */ function addDocShortCode( $content ) { if ( is_single() ) // Add shortcode to each page $content = sprintf( '[dg]', $content ); // Returns the content. return $content; }
I added it right after the function the_content. It works, however, it replaces all of the content from the post. I want all previous content from the post to remain and add the short code “[dg]” to the end. What am I doing wrong?
Forum: Fixing WordPress
In reply to: Attached PDF’s and docs in media not displaying in postsIs there a way to automatically put a short code on each and every post? Even if it is a custom post type?
Forum: Everything else WordPress
In reply to: Help with Contact form on HTML websiteI just figured someone here could possibly help
Forum: Plugins
In reply to: FB like main page hover button?none at allll?
Forum: Plugins
In reply to: FB like main page hover button?Anyone?
Forum: Themes and Templates
In reply to: WordPress Theme like ThisOh alright. Is there anyway I can convert this template: https://www.templatemo.com/preview/templatemo_292_red_top
into a wordpress theme?Forum: Fixing WordPress
In reply to: Ecommerce website?Yes, but now I just want to know how I will ship the stuff out.
Forum: Fixing WordPress
In reply to: Ecommerce website?Anyone?
Forum: Fixing WordPress
In reply to: Ecommerce website?Okay I think I know a lot than I knew before.
Now lets say if someone checks and item out and they enter their billing address, etc..etc..
How do I go about sending it to them?
Forum: Fixing WordPress
In reply to: What should I do?I’m confused :p Im a beginner, so yeah forgot to mention that. So basically your saying, when I make a new category, I can make it so it has its own template/theme with its own header WITHOUT creating another WordPress installation?