ternstyle
Forum Replies Created
-
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationAs long as each service provides a feed of the entries, yes. Each service will have its own benefits and limitations however.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationThat’s very kind @emuzone. Thank you.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Thumbnails Broken ImageA server migration might mean the folder permissions changed on /wp-content/cache/timthumb folder. This folder will need to be chmod 0777.
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationIf you want to add the iframe meta data to alternate meta fields, you need to do this when the Automatic YouTube Video Posts Plugin is parsing the videos. This happens in the /core/parse.php file. Good luck with your customizations. Note that the plugin will need to be customized each time you upgrade it.
the use of the following function will display the images manually wherever it’s placed:
<?php tern_wp_youtube_thumb(); ?>Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Illegal string offset – PHP 5.4What type of server is the live website?
Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationWhoops…missed a parenthesis.
<?php if(get_post_meta($post->ID,'_tern_wp_youtube_video',true)) { ?> <?php tern_wp_youtube_video(); ?> <?php } ?>Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Video (iFrame) LocationCheck to see if the video exists first.
<?php if(get_post_meta($post->ID,'_tern_wp_youtube_video',true) { ?> <?php tern_wp_youtube_video(); ?> <?php } ?>Forum: Plugins
In reply to: [Automatic Youtube Video Posts Plugin] Changing Display OrderCheck to see if the video exists first.
<?php if(get_post_meta($post->ID,'_tern_wp_youtube_video',true) { ?> <?php tern_wp_youtube_video(); ?> <?php } ?>Forum: Plugins
In reply to: [Members List Plugin] Registration Date FormatYou’d be looking at the markup function on line 421 of the file /class/members.php.
Forum: Plugins
In reply to: [Members List Plugin] Registration Date FormatNot without customizing the plugin.
Forum: Plugins
In reply to: [Members List Plugin] Address fields on profile pageTry switching the plugin setting to off:
Allow users to choose which lists they wish to be a part of?
This is something you could accomplish with CSS.
Forum: Plugins
In reply to: [Members List Plugin] WP 3.5.1 breaks Member PluginI see no errors with WP 3.5.2 and the plugin. What errors are you receiving?
Forum: Plugins
In reply to: [Members List Plugin] Sort alphabetically by first nameThis is something you can change in the plugin settings.