Aaron Ware
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Type Spotlight] Post Type Spotlight – Not Seeing a Featured "Banner"?Hey @dacho,
- The CSS you’d probably want to manage within your theme itself. We provide the classes so you can style those posts however you’d like. If we did provide default css it would be pretty basic (and most people may not be happy with it). Maybe we can put in a few more examples in the FAQs that will help. @desrosj or maybe do some default styling and allow people to filter it out.
- You can manage this based on your custom query shown in the example(s)
- You can manage this based on your custom query shown in the example(s)
- You can manage this based on your custom query shown in the example(s)
For 2 – 4 do you mean a way to manage that within the admin panel? We typically use this plugin within our custom loops through wp_query get_posts etc… But if you’re looking for an actual way to administrate it we’ll probably have to brainstorm the best way to approach it.
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Image as link?Glad it worked for you @rae-nester! If you could give an “it works” and a rating that would be awesome. Also if you have any features or bugs let me know.
Forum: Reviews
In reply to: [Responsive Page Tester] Excellent Tool for Responsive DevelopmentThanks for the feedback @theverylastperson! Much appreciated. We have a few other features we are working on as well but if you have any suggestions to make it better or even more useful let us know.
Forum: Reviews
In reply to: [Toggle wpautop] Works perfect!Thanks for the review @chrislachance! Let @desrosj know if you come across anything.
Forum: Plugins
In reply to: [BackUpWordPress] [Plugin: BackUpWordPress] Exclude folders from backupHi Sigmaweb,
also be sure that if you are backing up multiple items that you are defining each item comma delimited. I remember the first time I was excluding directories didn’t read the directions and was putting each item on a new line so I had.
debug.log
another-directory/instead of
debug.log,another-directory/
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Image as link?Hi Bret,
Didn’t hear from you. I did some testing and what I posted should do the trick. If you do need the image markup itself let me know and I can put it in the queue to implement.
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Image as link?Hi Bret,
There isn’t necessarily a way in the plugin itself to define an image to be used with the link. BUT what you could do is style each button utilizing css.
All you need to do is define the link_class argument
<?php next_page_link( array ( 'link_class' => 'my-custom-class' ) ); ?><?php previous_page_link( array ( 'link_class' => 'my-custom-class' ) ); ?>If you truly need an image as your links. I could add in a feature to the plugin to be able to change/define markup. I think the css class declaration should do the trick though
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Looping really?No problem, I will be sure to update the documentation to be a bit clearer. I guess it’s cause I “know better” haha but that’s only because I wrote it. I think the readme.txt defines it but I can add it to the FAQ for future reference. Thanks for the feed back and glad I could help.
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Looping really?Okey doke. In order for it to loop we need to tell it to do that in an argument. I’ve made some changes below. Try it out and let me know.
<!-- PAGINATION --> <?php if ($display_posts != "1") {// except if after blog list echo '<div class="other_posts">'; echo '<span class="prevp">'; echo previous_page_link( array( 'loop' => true ) ); echo'</span>'; echo '<span class="nextp">'; echo next_page_link( array( 'loop' => true ) ); echo'</span>'; echo '</div>'; } ?>On a separate but related topic. Your code could be optimized a little bit. You don’t necessarily need all of those echos for your html content
<!-- PAGINATION --> <?php if ($display_posts != "1") : // except if after blog list ?> <div class="other_posts"> <span class="prevp"><?php echo previous_page_link( array('loop' => true) ); ?></span> <span class="nextp"><?php echo next_page_link( array('loop' => true) ); ?></span> </div> <?php endif; ?>Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Looping really?No problem, Are you using the shortcode or the functions? Additionally are you passing any attributes in either scenario?
Forum: Plugins
In reply to: [Linchpin - PrevNextPage] [Plugin: Linchpin – PrevNextPage] Looping really?Hi Agnes,
Typically it SHOULD loop based on the page hierarchy and page order. Let me dig into it and see if something is deterring it finding the next sections. I should be able to look into this a little bit later today for you. Sorry for not getting back to you sooner for some reason I never get notifications when someone submits a support request.
Forum: Plugins
In reply to: [GD bbPress Attachments] [Plugin: GD bbPress Attachments] Won't upload,I’m getting the same issues as a few other users. Not seeing anything in the wordpress debug logs or in the apache logs when uploading. Latest BBPress, GD Attachments & WordPress. We do have a custom theme. But uploading was working initially. Not sure when file uploading stopped working but assuming it was either with the 3.4 release or a bbpress update?
You may be seeing this IF you published the post in HTML view. I actually came across that in a test post. My 2nd post I was in the regular view and it didn’t publish the HTML markup
Hi Markus,
Well for this situation. We still want the maps within the template of each event. But it’s trying to load the api on the home page and it hangs constantly. I say 4 out of 5 times. It’ll hang up on the loading.
So I really just want to exclude it if is_home or is_front_page at minimum. I was going to just look though and see where the script was enqueued and either filter it myself or see about loading the googlemaps api asynchronously so it doesn’t affect the rest of the scripts.
I have this in my list of items just haven’t had a chance to implement yet.
Hopefully that makes sense. Not sure if any one else has noticed it loading the script slowly or not
Hmmm @agelonwl not sure that’s what I am really looking for.
More so looking to unenqueue the google maps on specific pages. I think I’ll probably end up just looking through the source and unregister the script if I’m not on an events page.
Thanks though. I’ll post my snippet when I implement it either this afternoon or shortly there after.