conualfy
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Featured Content Gallery] Plugin doesn't work/shows blank box@banbouk – who are you asking this?
If it’s me, I read in the documentation that the standard configuration (using MooTools js) is not working when you are alreading running jQuery. I guess most of us are already having jQuery in our themes/plugins (ex.: LightBox images plugins), so PFC would not usually work.
My solution was to change the settings, to make it use the jQuery scripts (not MooTools). You have it in one of the tabs.
Forum: Plugins
In reply to: [Subscribe to Comments] Download Subscribe to Comments in DanishIn the search for an alternative I found this one:
Gurken Subscribe to Comments
(https://www.ads-software.com/extend/plugins/gurken-subscribe-to-comments/)I’ll try your plugin when I find the time soon. Thanks!
Forum: Plugins
In reply to: [Subscribe to Comments] Download Subscribe to Comments in DanishI could see you translated the text in the .php file. Was it not working to use PoEdit to generate the .mo file for normal localization process?
Forum: Plugins
In reply to: [Plugin: Featured Content Gallery] Plugin doesn't work/shows blank boxDo you have jQuery running on your theme? It might be because of that. I’m in a search for a carousel/sliding plugin and I could see on the video tutorial that PFC cannot run if jQuery is active in your site.
If this helps you, please update the thread as there might be others trying to figure it out. Thanks!
Forum: Hacks
In reply to: Set custom messages for post updateMy bad, sorry, it works. I was running this code inside a if-then-else and it was not adding the filter.
Forum: Fixing WordPress
In reply to: All link in my blog always go to my feedI changed the hosting provider and it fixed my problem. It was a redirect from the server and I was not the only customer with this issue that bugged me and I could see no solution.
Forum: Plugins
In reply to: Magic fields not showing all custom fieldsI’ve used the Wp get_post_meta() function for now. I’ll have a look at get() on the next MF release as there are other bugs and I don’t have too much time to debug now.
Thanks!
Forum: Plugins
In reply to: How to use post_updated_messages?I’m trying to edit the messages for the normal post but it doesn’t seem to work. I’m using this code in functions.php:
add_filter(‘post_updated_messages’, ‘my_updated_messages’);
function my_updated_messages( $messages ) {
global $post, $post_ID;
$messages[“post”][8] = ‘Message to be aproved in the following 24 hours.’;
return $messages;
}Is there a mistake I don’t see or how could I just edit one of the messages?
Thanks!
Forum: Fixing WordPress
In reply to: the_meta WORKS, get_post_meta does notI have this problem but in my code I have the ID, it just doesn’t work for some fields. I use Magic Fields plugin for attaching custom fields to posts.
It prints the number type fields, but not the text ones. Did any of you got this bug?
Thanks!
Forum: Plugins
In reply to: Magic fields not showing all custom fieldsI’ve uploaded the complete theme here:
https://best-anunturi.ro/twentyten-magic-fields.zipForum: Plugins
In reply to: Magic fields not showing all custom fieldsMight be, but not in my case where it’s a text field. If it returns an array, print_r() should print it.
Forum: Fixing WordPress
In reply to: Posts and pages redirected to random comments feedI changed the server and it solved the problem ??
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Display Custom Fields ContentIt also works with images (I have an image and it lists the link to that image).
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Display Custom Fields ContentI’ve checked if WP sees the fields with the_meta() function. I got the complete list of custom fields and their values, but I cannot list the texts (in this application Pret is supposed to be a number and it works even if they inserted a string in the field).
Forum: Plugins
In reply to: [Magic Fields] [Plugin: Magic Fields] Display Custom Fields ContentI’m having a problem with Magic Fields: it only shows some fields values (I tested with numbers) in single.php and in loop.php it does not show any field value.
I’m using twentyten theme also.
Here is a piece of loop.php with my code. I have another echo there to debug. I can send the whole theme if necessary.
<?php /* How to display all other posts. */ ?> <?php else : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <div class="entry-meta"> <?php twentyten_posted_on(); ?> </div><!-- .entry-meta --> <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> <div class="entry-summary"> <?php echo 'xj'.get('Text');//get('Text',1,1,1,get_the_ID()) echo get('Pret');//F: ?> </div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php echo 'xi'.get('Text'); echo get('Pret');//F: //F: the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyten' ) ); ?> <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>