Bowe
Forum Replies Created
-
This plugin works fine and is supported and updated almost weekly.. what are you talking about dude?
Forum: Plugins
In reply to: [Cloudflare] Protocol rewriting function is a big risk for lots of sites.Hey Simon,
Sure thing! Where do you want me to submit the support ticket?
Here’s what I’ve found that causes this issue.
With CloudFlare Plugin Activated
<form role="search" method="get" id="searchform" class="searchform" action="//www.sensei.net/"> <div> <label class="screen-reader-text" for="s">Search for:</label> <input type="text" value="" name="s" id="s" class="form-control"> <input type="submit" id="searchsubmit" value="Search"> </div> </form>
Without CloudFlare Plugin Activated
<form role="search" method="get" id="searchform" class="searchform" action="https://www.sensei.net/"> <div> <label class="screen-reader-text" for="s">Search for:</label> <input type="text" value="" name="s" id="s" class="form-control ui-autocomplete-input" autocomplete="off"> <input type="submit" id="searchsubmit" value="Search"> </div> </form>
It seems to do a rewrite on form actions, which causes the issues with certain plugins and scripts.
Btw for those wondering, this is the code I’ve used
<?php $args = array( 'orderby' => 'name', 'order' => 'ASC' ); $categories = get_categories($args); foreach($categories as $category) { echo '<img src="' . cfi_featured_image_url( array( 'cat_id' => $category->term_id, 'size' => 'thumbnail' ) ) . '">'; echo '<p>Category: <a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> </p> '; echo '<p> Description:'. $category->description . '</p>'; echo '<p> Post Count: '. $category->count . '</p>'; } ?>
Hi Mattia!
Sorry for the late reply, I had a christmas break from the client project where I needed this. Just wanted to tell you it works like a charm now! Thank you!
Cheers,
BoweForum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Request CountryIf you’re using BuddyPress 2.1 the following snippet also does the trick (and without needing another plugin)
https://bp-tricks.com/snippets/adding-country-list-profile-field-dropdown-buddypress-site/
Forum: Plugins
In reply to: [BuddyPress Like] Working version modified@maddogmcewan Is this version available somewhere?
Forum: Plugins
In reply to: [Commons In A Box] CBOX default theme homepage widgetsBecause we always assumed people would be using the CBOX theme in a multisite setup, we anticipated that bloggers (students) in the network would also be using this theme. For this reason we’ve disabled the “Site Features” and Homepage Widgets on subsites in a network. In the next version of CBOX I’ll work on making this a more elegant solution so that the homepage features and widgets also show up on subsite that has BuddyPress activated!
Forum: Plugins
In reply to: [BadgeOS] Possible to add Custom Post Types?That would be great for sure!
Forum: Plugins
In reply to: [BuddyDrive] CBOX compatibilityI’ll also look at why this happens (the duplicated menu stuff).
Forum: Plugins
In reply to: [BuddyDrive] CBOX compatibilityThanks for the temporary fix imath!
We’ll be updating CBOX as soon as possible to provide BP 1.7 compatibility. When we do I think BuddyDrive would indeed be a great plugin to recommend to the CBOX community ??
Forum: Plugins
In reply to: [Commons In A Box] CBOX default theme homepage widgetsHi there,
Glad you like the plugin, but sorry to hear you are having issues! I’d recommend you to make a topic on Commonsinabox.org, this is where our developers hang out to help you solve your issues! I know this reply is a bit late, so hopefully you’ve got everything working by the time you’ve read this!
Greetings,
BoweForum: Plugins
In reply to: [Buddy-bbPress Support Topic] Some glitches with Infinity/Balance themeiMath you da man! Thanks for fixing this ??
ps: If you ever want to use any of our themes you know where to find me!
Forum: Themes and Templates
In reply to: Pagination with custom post type listing@lancemonotone: THANKS!! It was the freaking Settings > Reading issue which caused the 404 page. What the… I finally got everything working. Pff
Works perfectly.. nice!
@bigsite: Thanks a lot for the tips and pointers! As a theme developer and designer I do know quite a lot about CDNs and caching/optimization. I did not know that the NGINX performance gain isn’t thatimpressive comparing it to Apache.
I’m currently moving hosts and waiting for the domains to be moved, but when that’s done I’ll dive into the Nginx configuration with my host.
Your steps look clear enough.. two questions though (If I may :-))
1: Is there a reason why you chose Super Cache over W3 Total Cache? I thought the later was better, but if you have a fully working Super Cache setup with Nginx I might go for Super Cache
2: How have you set up your CDN? Do you use W3 Total Cache for that, or a different plugin? And does that also need rewrites to work? (since .htaccess does not work on NGinx).
Finally; Maybe hybridindie can chip in about his Subdomains config file, and tell us if it does what it’s supposed to do :-). If we get that setup working, it would be nice to add it to the codex page as well.
Without this thread I would probably be lost ??