martinbeaulne
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Left Align in Theme Twenty ThirteenIt served me well too. Thanks.
Forum: Fixing WordPress
In reply to: PHP redirecting error.Well well. I gave it a last shot. And found a solution.
It doesn’t explains why my other code didn’t work. It’s a patch. It involves the ob_start function.
I don’t know if it can cause problems somewhere else, but it fixes the actual redirection problem.
Added
//allow redirection, even if my theme starts to send output to the browser add_action('init', 'do_output_buffer'); function do_output_buffer() { ob_start(); }
To my functions.php.
Found the solution here: https://stackoverflow.com/questions/7381661/cannot-modify-header-information-headers-already-sent-by-wordpress-issue
Forum: Plugins
In reply to: [GEO my WP] Fewer choices to locateI found it myself.
I added:
.metabox-tabs-div { display:none; }
in the style.css of my template.
It works like charm.
Thanks again, Eyal Fitoussi. You’ve been of great help on many threads…
Forum: Plugins
In reply to: [GEO my WP] Fewer choices to locateI’ve looked up in FireBug to see what field I’d have to hide.
I’m not really into php and css programming.
The whole block I want to hide is inside a div class=”metabox-tabs-div”.
Is it possible, in the main theme css file, to hide the entire div ?
What would be the code ? I can’t find it on google… ??
Forum: Plugins
In reply to: [Author: Munzir] Using login credentialsThat would be very cool.
Forum: Plugins
In reply to: [GEO my WP] Display checkboxes in scrollable boxWorks perfectly.
Thanks a lot. I’ve added a css class in the style.css of the theme, like:
.field_79 { some styling }
And it works like charm.Forum: Plugins
In reply to: [GEO my WP] Put the plugin outside member's loopHmmm…
Your answer is three things:
Exact, Precise, and terribly welcomed.Thanks a lot.
Forum: Plugins
In reply to: [GEO my WP] Put the plugin outside member's loopI started playing with this. See where I am now:
https://martinbeaulne.com/kinocontact/members/admin/So, basically, I know how to hide the bottom tabs, that part is ok. I just want to know how to add the Location thing in the member-header.
Thanks !
Forum: Plugins
In reply to: [BP Profile Video Widget] [Plugin: BP Profile Video Widget] Multiple video'sI guess there could be a choice made by the webmaster when choosing which widget will be created.
Since the fields are created only at the setting of the plugin ( i.e. when choosing the video widget ), there could be a dropdown menu asking how many videos will be allowed…
Creating one or more set of fields might be almost the same ?
After that, if the set of field isn’t null, the video displays… until it reaches an empty set of fields ( if the user has less than the max allowed ).
I’m just talking about the logic… As I said earlier, I’m not really into programming…
Forum: Plugins
In reply to: [BP Profile Video Widget] [Plugin: BP Profile Video Widget] Multiple video'sMay I ask this question again ?
I am about to make a cool community website with your plugin, and really need to have multiple videos from each members.
Before editing the plugin myself ( which will take long because I’m not that good programer.. ), I’m curious about the development of this update…
Thanks !
Forum: Plugins
In reply to: [WP Geo] Add user geolocationI’ve been looking for soooo long for a plugin that can sort members by distance on a member search page…
This plugin seems capable of creating a position database for each member…. it would be easy, after that, to sort members by distance…
Is it possible for you to develop such a plugin ?
solved. it was the theme configuration that was messing up everything and playing in the wp code…
Forum: Plugins
In reply to: [Plugin: wordTube] Incorrect Dimensions…asael, on another thread, you were talking about the front page not showing video ( quo0mmunication and wordtube ), I have the same problem, did you solve it ?