designrf
Forum Replies Created
-
Same for me. In both cases the database is not updated.
Forum: Hacks
In reply to: Post edit.php – add custom field to filter sectionHi There,
I came across your post and was using the same code. I needed to display a drop down with only one custom key.
To do that I replaced
$sql = 'SELECT DISTINCT meta_key FROM '.$wpdb->postmeta.' ORDER BY 1'; to $sql= "SELECT DISTINCT meta_key FROM $wpdb->postmeta WHERE meta_key = 'product_code_box_text' ORDER BY 1";
Hope that helps even now:)
Forum: Fixing WordPress
In reply to: $paged and WP_Query paginationThanks for your answer! I’ve tried but did not work.
Finally I’ve used wp-pagenavi plugin
wp_pagenavi(array('query' => $my_query ) );
and changed
$paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
for
$paged = get_query_var( 'page' ) ? get_query_var( 'page' ) : 1;
like in this post:
https://www.ads-software.com/support/topic/wp-pagenavi-with-custom-query-and-paged-variableHope that will help somebody.
Forum: Plugins
In reply to: [Facebook] Can't link my Facebook account with my WordPress accountHi There,
I’m having the same issue!
Any thought?
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Multi sellersThanks.
Forum: Fixing WordPress
In reply to: array and get post metaI’ve tried before but that give me an array into another one.
I got that:
Array ( [0] => 3=>'roro', 5=>'toto' ) size : 1
And my custom field value is: 3=>’roro’, 5=>’toto’
Maybe Im doing wrong. I just want to get a number associated with a name.
Do you have another idea to make it?
Forum: Networking WordPress
In reply to: Can I use a subfolder called BLog?Thanks for your help! Very quick:)
It looks like that can solve my problem.
Cheers
Forum: Fixing WordPress
In reply to: Jquery Load ProblemWell it was just to try with different library if the issue was from the library version.
Forum: Fixing WordPress
In reply to: Jquery Load ProblemIt looks like i found my problem.
I forgot the $ in the function($)jQuery(document).ready(function($){
//script here
});Forum: Fixing WordPress
In reply to: Jquery Load ProblemThanks but it doesn’t work ??
Forum: Fixing WordPress
In reply to: htaccessSorry for that, but my client wants to keep an holding page. I am the only one who can see the website.
You just need to know how are my links i guess.
Regards
Forum: Fixing WordPress
In reply to: htaccessHi, thanks for reply.
My permalinks are like that:
/%category%/%postname%/
But on my pages i add ?id= a postname (into a link) to transfer a variable but i would like a nice url.
I want to change https://www.leedsclubscene.co.uk/the-space/?id=parliament for https://www.leedsclubscene.co.uk/the-space/parliamentWhich rule i have to change for that?
Regards
Forum: Themes and Templates
In reply to: Exemple of unusual wordpress navigation.Thank you for the link. I will have a look.
Regards
Forum: Themes and Templates
In reply to: How to edit the category templateThanks a lot ??
Regards