jorge2904
Forum Replies Created
-
HI Stephen, Any word on this? I was looking into it and it seems like the $Args is being passed into wp_update_term which use
sanitize_term($args, $taxonomy, 'db');
to sanitize I think the problem is that its using the db paramerter but i could not find where the description for this is. It seems that using wp_update_term and wp_insert_term both use this. Both of these functions are inwp-includes/taxonomy.php
so editing them directly is out of the question. Not sure how to hook in to override this for the pluginFor now im going to not use qTranslate on the Venue but it would be great to have it working. In a near future update…
P.S. I only tested this in the Title field but I would assume that it would be the same for the descrption since they are passed in the same array to wp_update_term or wp_insert_term
Forum: Fixing WordPress
In reply to: WordPress and symlinksmake sure that the httpd.conf file has this option set
Options FollowSymLinks
or
Options +FollowSymLinks
That should take care of it
Forum: Themes and Templates
In reply to: Ordering by meta key valueOk in the end I used an array to give query_posts() parameters..
$query = array( 'post_type' => 'page', 'meta_key' => array('front_page_nav', 'front_page_nav_position'), 'meta_value' => array('true'), 'order_by' => array('front_page_nav_position'), 'order' => 'ASC' ); query_posts($query);
Forum: Themes and Templates
In reply to: <p> tags in postsThanks, It didn’t know that the tags are added through the LOOP functions… I didn’t use its since it was only one page.
Forum: Themes and Templates
In reply to: [Theme=Snapshot] How do I edit the upper right empty space?post a link to the template so we can help you….
Forum: Themes and Templates
In reply to: <p> tags in postsThere definetly not there take a look
https://dev.j9consultants.com/gbs/
This theme use the home.php and the text is loaded using
<?php $page = get_page_by_title( "Welcome to GBS Group", ARRAY_A ); echo "<h2>{$page['post_title']}</h2>"; echo $page['post_content']; ?>
There is a CSS Reset but I set the code I want
p
‘s to use after the reset… Its also not only margin but font-size as well and styles as well