mfrerebeau
Forum Replies Created
-
Thanks a lot !
J’ai rencontré le même souci. Serait-il possible de mettre les fichiers po à dispositions disponible pour tous ?
Hello,
Thanks a lot for your answer MariaKravchenko.
I follow your advice and I found one difference between theme files !
=> footer.php doesn’t have “wp_footer()” function on server. Pagination must be set in WordPress footer… :p
=> It resolves sort and paginationFor research there was a configuration difference : the “categorie” attribute have parameter “Entrée de recherche” set to “Plage déroulante” and it would be set to “Liste déroulante”…
=> It resolves search problemI put the pages on the product server : https://pointg-immobilier.fr/biens-immobiliers/?wpp_search%5Bpagination%5D=on&wpp_search%5Bper_page%5D=10&wpp_search%5Bstrict_search%5D=false&wpp_search%5Bproperty_type%5D=maison%2Cappartement%2Cbureau%2Clocal&wpp_search%5Bcategorie%5D=-1&wpp_search%5Badresse%5D=#/requested_page=1&sort_order=ASC&sort_by=categorie&i=1
Best regards
Forum: Plugins
In reply to: [My Private Site] Landing Location seems not runSorry for My long silence…
I found some other solution for my customer with a simple line of code in header.php of my theme…
But this solution is not good for everybody because it needs to be developer to do it… Or I’d like propose some solution that all can implement, as your plugin purpose.I’ll put the project on my development server and I’ll make tests an other time. Then if I can re-create the bug I’d give you the access.
See you soon.
Forum: Plugins
In reply to: [My Private Site] Landing Location seems not runSorry for time response jonradio. I was so busy…
The theme is a specific one for my customer and it’s note a public site… So I can’t give it to you… But there no code in functions.php and just three templates are used (single.php, home.php and categoy.php)
List of plugins :
* Category Checklist Tree 1.3.2 by scribu
* Category Order and Taxonomy Terms Order 1.3.6 by Nsp-Code
* jonradio Private SiteForum: Plugins
In reply to: [My Private Site] Landing Location seems not runI’m not clear on a few things. When you change Landing Location, and Save Settings, does your chosen option display or does it display as “Return to same URL”?
The option is saved correctly.
In admin page, if I check “Go to Site Home” and save : I retrieve “Go to Site Home”. So it seem ok…But We I disconnect and reconnect I return to dashboard and not to home.
What other settings have you chosen?
I tried any other options and it the same.
And, of course, are you seeing any messages besides Settings Saved on the Settings page?
I’ve seen : “Settings Saved” ??
I’ll be out of the office now but will be back in less than two hours, and can respond then.
No problem. I’ll not come back before tomorrow.
Good Evening.
Forum: Fixing WordPress
In reply to: Help !! codex is down since this morning 7 a clock GMT !!The codex run again…
Thanks to the admin who repaired it !!At this time it’s still impossible to log in and modify pages.
Wait and see.Forum: Plugins
In reply to: [User Taxonomies] Don't share taxonomies between users and postsHello,
I’ve just seen this plug-in and the possibilities seem to be very interesting. But I need to share taxonomies between any type of post and users.I Think there is a way for WordPress to distinguish whether the object_id in the wp_term_relationships table is a post ID or a user ID : it need that WordPress see wp_term_taxonomy table where there is object type. It could do it with a SQL WHERE clause.
And it need that the string “user” be reserved to the users and doesn’t used for a post type named “user”…
[edit] In fact, that’s right wp_term_taxonomy haven’t field to know witch table linked to… A field should be added with the table concerned… In MERISE Method we must create a new specific relation between user and wp_term_taxonomy tables…
Forum: Plugins
In reply to: [Download Monitor] How to migrate from WordPress Download Monitor ?YES !
Thanks a lot !Forum: Plugins
In reply to: [Posts 2 Posts] wp_reset_postdata() doesn't workJ’ai le même souci sur l’interface d’admin (édition d’un CPT…)
La solution trouvée a été d’extraire les données de ma query sans passer par les variables globale (sans utiliser the_post ou setup_postdata) :<select name="mf_toom_series_link" id="mf_toom_series_link"> <option value="" ><?php _e( 'Série de cet épisode', 'mf_toom_series' ) ?> ?</option> <?php $series_list = new WP_Query( array( 'post_type' => 'toom_serie', 'post_status' => 'publish', 'posts_per_page' => -1 ) ); ?> <?php foreach( $series_list->posts AS $serie ) : ?> <option value="<?php echo $serie->ID ?>" <?php if( $mf_toom_series_link == $serie->ID ) : ?>selected="selected"<?php endif?> ><?php echo $serie->post_title ?>?</option> <?php endforeach; ?> </select>
Super !
That will be good to insert patches in next version
Thanks !Forum: Fixing WordPress
In reply to: wp_list_table edit, delete actionJvn.D, Have you resolve the issue ?
What was exactly your problem ?
For me, when I click on a action’s link it say that I haven’t capability to access this page… I don’t understand why ?
Is your problem is/was the same ?
The ambrosite-nextprevious-post-link-plus plugin run perfectly on WP 3.4.1 !
Just one thing : the indorock allows cascading multiple sorts / the plugin is more easy to use but don’t allow more than 2 multiple sorting in cascading.
I’m going to try this plugin : https://www.ads-software.com/extend/plugins/ambrosite-nextprevious-post-link-plus/
If it can help someone else…
Hi indorock,
Thanks to post your solution. That what I research to a sorting problem…
Do you have some other news on a wordpress native method ?
If I don’t find other solution I’ll take yours. ??