imagebox
Forum Replies Created
-
Forum: Themes and Templates
In reply to: using tag icons instead of tag textYes. Essentially in one of your template files you should see the_tags() Note: there maybe some other code within the ( ), but you are looking for the_tags(‘possibly some code’)
Just replace the_tags() with that code and it should work.
Forum: Themes and Templates
In reply to: Benefit of get_template_partsAwww…that makes sense. My thought is they created that function to accept the array to easily allow certain pages to have a unique header or footer include to allow for scripts or some other code which should only appear on a specific page. Rather than doing a
if(is_home()){
test in the header.php file you could simply include a separate file with all of the html or logic in it.
Forum: Themes and Templates
In reply to: using tag icons instead of tag textYou may want to also look in your theme folder to see if there is a content.php file which may also display show
<?php the_tags() ?>
Forum: Themes and Templates
In reply to: using tag icons instead of tag textIt depends on the theme you are using. However you will generally find some code in your index.php file which says:
<?php the_tags() ?>
Essentially you need to locate where in your template file that its echoing out the text tags and replace it with the code you found on: https://www.ads-software.com/support/topic/show-tag-icons-instead-of-tag-text
Forum: Plugins
In reply to: [WP-Paginate] Paginating long posts using WP-Paginate pluginNo it didn’t end up working. You may want to check out – https://www.wpbeginner.com/wp-tutorials/how-to-split-wordpress-posts-into-multiple-pages/
The only issue with this method is that it is not going to automatically paginate after a set number of words. The editor needs to have
<!––nextpage––>
added where you want the page to stopForum: Fixing WordPress
In reply to: Terms of post in custom taxonomy orderby name alphabeticallyNo worries. YOU ROCK!!!! It worked perfectly. Thank you sooooo much!
Forum: Fixing WordPress
In reply to: Terms of post in custom taxonomy orderby name alphabeticallyThanks, but unfortunately that outputs all of the terms of the taxonomy and NOT just the terms of taxonomy associated to a specific post.
Forum: Plugins
In reply to: [WP-Paginate] wp-paginate in a custom post loopDid you find a solution to this? I am also looking into how to use this plugin with a similar custom loop.
Forum: Fixing WordPress
In reply to: Tag Template Not Displaying Some TagsAny thoughts on this?
Forum: Themes and Templates
In reply to: Error Loading Comments on PostWhoops! I forgot to put links to the pastebin.
Here is the link to the comment-template.php file – https://pastebin.com/RwD12rK1
Here is the link to my comments.php file – https://pastebin.com/c7prf3R1
Also here is the link where you can see the error message – https://bloomfield.imagebox.com/uncategorized/hello-world/#comments
Forum: Plugins
In reply to: [Plugin: WidgetLogic] – Error eval() code on line 1I just said the hell with it and switched to using Widget Context. Works like a charm.
Forum: Plugins
In reply to: [Plugin: WidgetLogic] – Error eval() code on line 1I setup another wordpress installation on a separate domain on the same server and got the same error.
Forum: Themes and Templates
In reply to: Need Some Help Looping Through ImagesNevermind I took a different route.