Marc Serra
Forum Replies Created
-
As Smash Balloon support said via email:
The problem would be that whatever widget you’re using (must be coming from your theme options?) is overriding the user id that you have set in the Instagram Feed settings page. The IDs are very similar but not quite the same.
Was the other ID from an old account that you removed at some point? Either way, you should be fine as long as you use the “good ID”
The answer is yes. The problem is now solved.
Thank’s to Smash Balloon support.
Great support for this plugin!
True, we are talking via your ticket system.
If it’s ok for you, I will publish the solution here when we find the problem.
Thank’s for your support.
same problem here with the latest version of Contact Form DB
Forum: Plugins
In reply to: [Dropdown Menu Widget] Not working (no submenus) with my own themeSolved!
Need to add
<?php wp_head(); ?>to header.php and<?php wp_footer(); ?>to footer.php …😉
Great news!
Thank’s and congratulations for this fantastic plugin!
Forum: Fixing WordPress
In reply to: Hide editorcontainer in edit/add postoh yes!!! That works great!!!
Thank’s for your time!!!
Forum: Fixing WordPress
In reply to: Hide editorcontainer in edit/add postthank’s metamorpher,
but don’t work here!!!
I added add the bottom of my theme functions.php…
remove_post_type_support('post', 'title');And the title still there.
???
Forum: Fixing WordPress
In reply to: Hide editorcontainer in edit/add postOk, I find it!
Edit wp-includes/post.php, on line 26, you can see…
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions' ),delete “‘editor’,” if you want to hide The Editor box, delete “‘title’,” if you want to hide The Title box, …
I hope this helps somebody.
Thank’s to: http://codex.wordpress.org/Function_Reference/register_post_type
Forum: Plugins
In reply to: Categories hierarchy in post pageOk, I find a solution, but requires to maintain the category SLUG uptaded!
The following orders the post categories by slug text…
$args=array('orderby' => 'slug'); $terms = wp_get_post_terms( $post->ID , 'category', $args); foreach($terms as $term) { echo '<a href="' . esc_attr(get_term_link($term, 'category')) . '" title="' . sprintf( __( "View all posts in %s" ), $term->name ) . '" ' . '>' . $term->name.'</a> '; }Other options with different results (for who it’s interested)…
Prints a list of post categories in alphabetic order…
echo get_the_category_list();Prints the post categories in alphabetic order…
foreach((get_the_category()) as $category) { echo '<a href="?cat='; echo $category->cat_ID . ' '; echo '">'; echo $category->cat_name . ' '; echo '</a>, '; }Prints the post categories in alphabetic order and repeating the parent categories…
foreach((the_category(', ',multiple,$post->ID)) as $category) { echo '<a href="?cat='; echo $category->cat_ID . ' '; echo '">'; echo $category->cat_name . ' '; echo '</a>, '; }The following prints all the categories, not post categories…
$args = array( 'type' => 'post', 'child_of' => 0, 'orderby' => 'slug', 'order' => 'ASC', 'hide_empty' => 1, 'hierarchical' => 0, 'pad_counts' => false ); foreach((get_categories( $args )) as $category) { echo '<a href="?cat='; echo $category->cat_ID . ' '; echo '">'; echo $category->cat_name . ' '; echo '</a>, '; }Forum: Fixing WordPress
In reply to: get_the_category orderHello to all, 😉
Hello Michael,
Your solution works great. Do you think there is a chance to display only the last category => grandchild with your solution ?
I’m interested too… anyone have a solution?
Forum: Plugins
In reply to: [Plugin: Custom Field Template] Removing <ul><li> tagsI simply changed
if ( $val['singleList'] == true ) : $replace_val = '<ul><li>' . $replace_val . '</li></ul>'; endif;for
if ( $val['singleList'] == true ) : $replace_val = '' . $replace_val . ''; endif;Dirty, but effective 😉
try with
<strong>text</strong>That works for me! Good luck!