mouzaia
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Domain Mapping with WP 3.8 ?xxx
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Domain Mapping with WP 3.8 ?Sorry, my fault ?? it works fine ! thanks for that beautiful plugin
Forum: Themes and Templates
In reply to: Theme Mininimatica – probleme image a la uneAs esmi said, I have switch to the default theme, and it worked. Then, I switch back to the child theme, and it did not work, still the same message : “there is a problem with the image try later”
So … then I have renomed my functions.php, and it worked !!! and there is only 1 function in it.
I do not understand where is the pb ??Forum: Themes and Templates
In reply to: Responsive menu with twenty13, wp 3.6.1New developement :
Having tested as above, I went back on my “production” site, the site of the client.
In a new directory, www2, i have installed 3.6 french. Then I have copied my wp-config.php from www2 to www, not touching to my databases.On my www, I did a last test, no menu open in a responsive mode (ie with menu followed by the little triangle).
I then renamed www to old.www and www2 to www. So I hava a 3.6 to test with. I did, it work, my menu was normally open with a click on the triangle.
Then, it is late, I want to stop, so I have renamed www to www2 again and old.www to www. Back to 3.6.1. A last test : IT WORK !!!
I presume something had been written in the database ?
Hope this experience will help. Now I can sleep happy !
Thanks to all.
Forum: Plugins
In reply to: [BxSlider WP] Multisite ?Sorry it works now with no intervention. Maybe a pb with cache !
Forum: Plugins
In reply to: [Flip Pong V] Update ?I am sooo sorry ??
1 I did not notice your answer, the new template of gmail …
2 I red too fast the message, I did not notice it was talking about my php version, not about my wp version, and it is true, I use php 3.2.1 …Sorry.
Thanks for your answer.
Forum: Plugins
In reply to: [T&P Navigation Menu] transparencyMe again, for the last time ??
if (scroll_top > tp_navigation_offset_top) { jQuery('#navbar').css({ 'position': 'fixed', 'top':0 }); jQuery('#navbar').css({ 'box-shadow': '0 0 50px #999999' }); } else { jQuery('#navbar').css({ 'position': 'relative' }); jQuery('#navbar').css({ 'box-shadow': 'none' }); }
works perfectly !
Then the color is the default one of the menu.
Forum: Plugins
In reply to: [T&P Navigation Menu] transparencyHello,
In your index.php, there is a $file with a double //:
$file = plugin_dir_path(__FILE__) . $file_path;
So I add this:
$file = str_replace(“//”,”/”,$file);In fact I would like to have the
====>>> jQuery(‘#navbar’).css({ ‘background’: ‘#FFFFFF’ });
above automatically filled with the color of my main navbar. But i am not as good as you with js.Best Regards
Forum: Plugins
In reply to: [T&P Navigation Menu] transparencyI found the modif to do in tp_navigation.js !
\\
if (scroll_top > tp_navigation_offset_top) {
jQuery(‘#navbar’).css({ ‘position’: ‘fixed’, ‘top’:0 });
jQuery(‘#navbar’).css({ ‘background’: ‘url(“wp-content/plugins/tp-navigation-menu/css/brown-2.png”) repeat scroll 0 0 transparent’ });
jQuery(‘#navbar’).css({ ‘box-shadow’: ‘0 0 5px #999999’ });
====>>> jQuery(‘#navbar’).css({ ‘background’: ‘#FFFFFF’ });
} else {
jQuery(‘#navbar’).css({ ‘position’: ‘relative’ });
jQuery(‘#navbar’).css({ ‘background’: ‘#F7F5E7’ });
jQuery(‘#navbar’).css({ ‘box-shadow’: ‘none’ });
}
\\
Hello,
z-index:-1 where ? in .css ? which class, id ?
In fact the menu stick on the top but the text of the page pass over it. How can I change that z-index ?
Thanks for that plugin anyway.
Forum: Plugins
In reply to: [NextGen Gallery Powertags] How to hide tag menuNo for me, ‘tagmenu_format=empty’ does not work !
So : .nggpowertags-menu {display: none; } ??Forum: Fixing WordPress
In reply to: Updating the content of "title" in a post?? ?? ??
I am sure it will …
??
Forum: Fixing WordPress
In reply to: Updating the content of "title" in a postI am trying to change the value of a title when certain treatments are done.
I am looking for a kind of update_post_meta(), not for custom fields but for the title.Forum: Fixing WordPress
In reply to: Updating the content of "title" in a postIn fact, it just display 1234
I would like to change the title in the database. I mean, physically, a kind of set_title which does not exist unfortunately.Forum: Fixing WordPress
In reply to: Updating the content of "title" in a postHello Esmi,
do you mean :
function modif($title, $id) { return '1234'; } add_filter('the_title', 'modif', 10, 2);
then my title is 1234 ?
So simple,
Sorry and thanks.