TStone
Forum Replies Created
-
Same here. Found the problem on line 7 in the file “jetpack.css”
The urls for Open Sans and Noticons are wrapped in too many quote signs. Deleting the excess quote signs is fixing the problem.
Forum: Plugins
In reply to: [BuddyPress for Sensei] No teachers on members pageI’ve done so.
In the contact form, none of the alternatives in the required select “Why are you contacting us?” fit this particular situation, so I picked an alternative at random. I hope that didn’t mess anything up.Forum: Plugins
In reply to: [BuddyPress for Sensei] Messaging recipient?Thank you! Works perfectly!
I guess I can remove this fix after the next update?
Forum: Plugins
In reply to: [BuddyPress for Sensei] Messaging recipient?Forum: Plugins
In reply to: [BuddyPress for Sensei] Messaging recipient?Yes, it is enabled.
I noticed that the URL via your plugin isn’t the same as when using Buddypress’s own Private message button.
With your button, the part after the “?” in the URL says “receiver“.
But with Buddypress own button, it only says “r” after the “?”.And if changing:
http://example.com/members/oneguy/messages/compose/?receiver=john
to
http://example.com/members/oneguy/messages/compose/?r=john
and hit reload, it suddenly works as intended.The Private message button in Buddypress also puts a _wpnonce in the URL, like this:
...?r=john&_wpnonce=123456789Perhaps “receiver” have become deprecated and taken out?
Forum: Plugins
In reply to: [BuddyPress for Sensei] No teachers on members pageIt doesn’t seem to be anything wrong with the roles themselves.
Sensei’s own shortcode[sensei_teachers]get the number of teachers right.
And to make sure, I put together a test myself, and that also displays as expected:function teachercountfunc() { $teachingcrew = get_users( 'orderby=nicename&role=teacher' ); $headcount='<p>There are '.count($teachingcrew).' teachers, and their names are:</p>'; foreach ( $teachingcrew as $someguy ) { $headcount .= '<li>' . esc_html( $someguy->display_name ) . '</li>'; } return '<ol>'.$headcount.'</ol>'; } add_shortcode('teachercount','teachercountfunc');Forum: Plugins
In reply to: [BuddyPress for Sensei] No teachers on members pageI deactivated the plugins, except for these:
https://dl.dropboxusercontent.com/u/15071513/buddysensei.pngStill no luck.
Forum: Plugins
In reply to: [BuddyPress for Sensei] No teachers on members pageThanks danicom. Just tried that but no change.
Forum: Plugins
In reply to: [BuddyPress for Sensei] No teachers on members pageYes, you are right, that is how it is supposed to work. And had it done that, I would not have posted here.
As I mentioned initially, I did check the teacher role before posting, so I’m not sure why your sole advise is to check that the teacher role is set. Seems like redundant advise, but sure, I’ve checked again, and nothing have changed. The role is still set to teacher, the account is still active, and there still no teacher shown on the membership page. See screen capture:
https://dl.dropboxusercontent.com/u/15071513/bp-teachers.jpgForum: Plugins
In reply to: [Pronamic Google Maps] Info popup css problemWonderful! I am very grateful for your help!
Forum: Themes and Templates
In reply to: [Storefront] Homepage Control problem solvedYes, I guess it would have been better to update the other topic. Only… I was searching for solutions to the problem, and the title of the other topic doesn’t really describe the problem. I happened upon it by chance alone. So I started this topic to make it easier to find.
Forum: Themes and Templates
In reply to: [Storefront] Featured Products on Home PageSame problem here. “Homepage Control” does nothing, no matter how the blocks are reordered, checked or unchecked. No product sections appears, not to the eye and not in the generated html. There’s no difference between having the plugin activated and having it deactivated.
I’m using a simple child theme that doesn’t change any templates, just adds a bit of css for background images.
WordPress version 4.3.1
Language sv_SE
PHP version 5.5.28Forum: Plugins
In reply to: [Strong Testimonials] missing featured imageAmazing! And amusing. 🙂
Sorry to cause you all this work. But you know what they say – The Reward For a Hole Well Dug Is a Bigger Shovel.Forum: Plugins
In reply to: [Strong Testimonials] missing featured imageHm, it seems that the theme-support options for my theme (in functions.php) cancels out and overrides stuff that a plugin want to add. I’m not sure that is a desired behaviour – maybe a bug report should be filed with wordpress (however that is done)?
I’m using custom posttypes in my theme, and some of them need thumbnail support and some don’t, so I have this in functions.php:
add_theme_support( 'post-thumbnails', array( 'post', 'page', 'cpt1', 'cpt3', 'cpt4') );I guess that I have to add ‘wpm-testimonial’ to that array? Which doesn’t seem like a proper behavior – a plugin should be able to add itself to that array.
Forum: Plugins
In reply to: [Strong Testimonials] missing featured imageSame problem here. No featured image when using my own theme (based on Underscore). It appears when switching to TwentyFifteen, but goes away when switching back.