dporchia
Forum Replies Created
-
Forum: Plugins
In reply to: [iTunes Lookup Widget] Support for Top Albums, Genre, etc?Thanks for the fast response. I’ll look into this and see what I can put together.
Forum: Plugins
In reply to: [Cue by AudioTheme.com] How to retrieve cue_playlist id for templateI think I’ve worked out a way to do what I wanted – I created a custom field in each post called ‘playlist_id’ – and then put the following code in my template to instantiate your plugin.
<div id="musicPlayer"> <?php $playlist_id = get_post_meta( get_the_ID(), 'playlist_id', true ); if (!empty ($playlist_id)) cue_playlist( intval($playlist_id) ); ?> </div>Thanks Brady!
Forum: Plugins
In reply to: [Cue by AudioTheme.com] How to retrieve cue_playlist id for templateHi Brady,
What I’m trying to do is load the correct cue playlist that is related to the post. I’m running a music download site and I want to display a music player (cue playlist) for that particular album (post).
Based on what I’m reading in your reply, it doesn’t look like what I want to achieve is possible. :-/
So what you are saying is that the playlist is not tied to the current post at all? If so, could it be modified to tie the playlist to the current post?
Thanks for the prompt response,
– Dustin
Forum: Fixing WordPress
In reply to: 3.4.2 Database Update IssueThanks @jeffpurcell…your solution worked. Had to bump it up to 512MB though.
I tried to implement your sample code into my site but the total favorites for the post doesn’t show up. All I see is the “people like this post.” text.
<span class="mixtapeStats"> <b class="tapeViews"> <?php echo getPostViews(get_the_ID()); ?> <span class="statTxt">Views</span> </b> <b class="tapeComments"> <?php comments_number('0', '1', '%'); ?> <span class="statTxt">Comments</span> </b> <b class="tapeFavs"> <?php $key="wpfp_favorites"; $favorite_count_check = get_post_meta($post->ID, $key, true); echo $favorite_count_check." people like this post."; ?> </b> </span>As you see, I have the total Views and Comments, but cannot get the total favorites to display correctly.
Any suggestions?
Hey sarangan112, I think I may have the answer for you.
If you check lines 37 & 38 in front-end-upload.php you can edit these lines:
37: define( ‘FEU_DESTINATION_DIR’, ABSPATH . ‘/Your-Directory-Path/’ );
38: define( ‘FEU_DESTINATION_URL’, get_bloginfo( ‘url’ ) . ‘/Your-Directory-Path/’ );let me know if that helps.
Forum: Plugins
In reply to: [Front End Upload] [Plugin: Front End Upload] Changes File NameIts in the front-end-upload.php file, go to line 720 and match this line:
unique_names : false
Hi, I have the same issue as well. I have both wp-head() and wp-footer() and the error message appears sporadically.
Does this affect the functionality of the plugin?
What if I want to pull the favorite count for a post and display that value on the homepage of my site?
Forum: Plugins
In reply to: [Social Login] [Plugin: Social Login] How do I override CSS stylinghttp://worldwidemixtapes.com/wp-login.php
Thats the page you can access. The rest of the site is in development mode/maintenance mode and cannot be accessed by the public.