mot13
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Div styling not hitting the_content PHPHello!
Yes of course here is a link to the page which displays the problem
The word displaying “Seven Force” is how I want the_content to look. The actual content is being displayed in the default settings.
Forum: Themes and Templates
In reply to: Div styling not hitting the_content PHPThank you! but still no effect 🙁
Forum: Themes and Templates
In reply to: previous post link not workingGREAT SCOTT! It worked! @crouchingbruin you magnificient genius!
glorious working code
<?php previous_post_link('%link', '<div class="navButton"><h5><</h5></div>'); ?>I assume this same method will work for the next post link as well
I didn’t have to use the escape code but I think I’ll do it anyway just to avoid errorsForum: Themes and Templates
In reply to: previous post link not workingShoot! so then there is really no way to do this?
Forum: Themes and Templates
In reply to: previous post link not workingI plugged it in your code but it still does the same thing where only the character is linked and not the whole button. Its still behaving the same way
Which baffles me.
Forum: Themes and Templates
In reply to: previous post link not workingYour code works!
but not exactly like how I need it to.
The reason I put the anchor link around the first post div is so that the entire navigation button is a link and clickable as opposed to how I have the last post div in which only the character (‘ < ‘) is clickable.
which is why im trying to get a code that will interact with the anchor link code like the function I have do
Forum: Themes and Templates
In reply to: previous post link not workingHere’s how I made the the navigation button for the “First Post” button
<a href="<?php echo Get_First_permalink(); ?>"> <div class="navButton"> <h5> << </h5> </div> <!--- End of navButton---> </a>and here’s how I have it for last post
<div class="navButton"> <h5> <?php previous_post_link('%link', '<'); ?> </h5> </div> <!--- End of navButton--->It works but it doesn’t take to my styling like the first one.
so if I do this will it work?
<a href="<?php previous_post_link('%link', '<' , $in_same_cat = false, $excluded_categories = ''); ?>"> <h5> < </h5> </div> <!--- End of navButton---> </a>Forum: Themes and Templates
In reply to: previous post link not workingSorry it ate my code
How do I get this to work in a
<a href= > tag?Forum: Themes and Templates
In reply to: previous post link not workingThanks! though I still don’t think I’m using the code correctly.
How do I get this to work in a tag?Forum: Themes and Templates
In reply to: Removing Sidebar if post formats (webcomic help?)Ah, Thank you very much I’ll try this out
Forum: Themes and Templates
In reply to: Removing Sidebar if post formats (webcomic help?)Oh I see I think but its still a bit confusing. My apologizes Im not used to this vocabulary.
So this creates another condition for the sidebar to appear? But I actually want the sidebar to appear in all conditions unless the there is a post with (using your example) the post format “aside”. Were we thinking the same thing?
Forum: Themes and Templates
In reply to: Removing Sidebar if post formats (webcomic help?)So I would be adding this code to the sidebar.php or function.php?
Forum: Plugins
In reply to: [Webcomic] Is there a way to not have the webcomic on the front page?after playing around with it I think I’m beginning to understand how to get the plugin running now however I am running into one persistent snag.
When I paste the webcomic code into the custom-page.php it appears there well enough but when I navigate with the next and last buttons the comic that appears doesn’t load using the custom-page.php format but instead seems to be using the single.php or page.php for its stylingsHow do I get the plugin to designate which page format to use?
Forum: Plugins
In reply to: [Webcomic] Is there a way to not have the webcomic on the front page?I think I understand what your saying although I am not entirely sure how to execute it.
I’d like the comic to be on a page its own separate from the home and blog roll mostly because my blogroll is too small to accomadate the larger page sizes I’d want to use.
I developed a custom page with a larger column to accommodate the plugin as well as my comic.
If I’m not making sense here’s my website for you to see
http://kidtrash.comThe page I set up for the plugin is in the Comics Page part.
So do I need to copy paste the code from the plugin files into the custom page?
Much appreciated! Seriously I was half expecting to hear from anybody for a few weeks
Forum: Plugins
In reply to: Preview Article Plugin and Webcomic helpThank you, You’ve been an incredible help.
I haven’t tried this out yet but it looks like exactly what I
am trying to do.