Neoqueenhoneybee
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Recipe Maker] Archive Page and Auto Recipe PostsBrecht,
Thanks again, we’re glad we found your plugin. And again, thanks for being so responsive!
Forum: Plugins
In reply to: [WP Recipe Maker] Archive Page and Auto Recipe PostsBrecht,
That did it! Thank you so much! We liked what we saw enough to buy the plugin. ??
With that said, I now have a recipe page (one that automatically has it’s own URL) and I was wondering if there was a simple way to change the layout of the actual post and not just the recipe box? Like if I make a custom single template (or page), is there an option already existing in your back end where I can assign that custom template to all individual, auto URL recipes? (like a different sidebar or maybe full width; haven’t decided)
Forum: Plugins
In reply to: [WP Recipe Maker] Archive Page and Auto Recipe PostsHi Brecht,
THanks for getting back to me. I’d like to set it up so that each recipe has its own URL, but I have that already turned on but I still don’t have a working URL. I’ve included the settings screen cap on the page below as well.
Forum: Plugins
In reply to: [Comic Easel] Chapter Help/Setup and QuestionHmm I really like how it looks! Whole site really and completely appreciate your solution; pretty much what I was hoping to achieve.
If I might bother you a bit longer, which settings did you use to create chapters that are linked to one another. I have a parent ‘chapter/cat’ and chapters 1 and 2 are subs of the parent, but it hasn’t affected the linkage. I also placed links in the “Add url here or leave empty to use next comic or default none” input, but still nothing.
Forum: Plugins
In reply to: [Comic Easel] Chapter Help/Setup and QuestionHi illyaking, thanks for replying. Would you mind providing a link so I can see it in action? Really curious to see it realized.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Player: Can You Use an External Link as FIle?OR is it possible to have a post show up if there is nothing in the file section so they can just embed the podcast? (Currently the podcast will not show on the main page if it does not have a link/file in that field.)
- This reply was modified 5 years, 7 months ago by Neoqueenhoneybee.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Player: Can You Use an External Link as FIle?Hi, thank you for getting back to me, but I’m not sure how that answered my question about using a soundcloud link with the SSP plugin instead of uploading a file onto the site and using that link. I’m setting this up for a client and they use Soundcloud. They are not interested in any other hosting solution, not even on their website.
Soundcloud, tune in, spotifly, or google play, or apple podcast; these are what they use.
So back to my original question, is it possible to use an episode link from one of the above services in the podcast file section of the SSP plugin?
Forum: Plugins
In reply to: [Facebook Events Importer] No Link to Individual EventsI did make a sloppy edit to the PHP; I’m sure there is a more elegant solution but for now I edited the facebook_events_importer.php file. wrapped the div in an a href.
<a href="<?php the_permalink(); ?>"> <div class="fbecol-1-3"> <div class="fbecol" data-id="<?php echo $permalink; ?>"> <div class="fbe_list_image" style="background-image:url(<?php echo get_fbe_image('cover'); ?>);" > <div class="fbe_list_bar"> <div class="fbe_list_date"> <div class="fbe_list_month"><?php echo $event_starts_month; ?></div> <div class="fbe_list_day"><?php echo $event_starts_day; ?></div> </div> <div class="fbe_col_title"><h2><?php echo limitFBETxt( $event_title,150); ?></h2></div> <div class="fbe_col_location"><h4><?php echo limitFBETxt($location,100); ?></h4></div> </div> </div> </div> </div> </a>
Forum: Plugins
In reply to: [Mitsol Social Post Feed] Extra Padding At Top?Forum: Plugins
In reply to: [Mitsol Social Post Feed] Extra Padding At Top?Here is a picture of what I’m seeing in case the link still doesn’t work (we have been testing privacy functions on the site)
https://d46.123.myftpupload.com/facebook-widget.jpg
I am using the free version
I changed the following in the CCF’s CSS.
form.customcontactform div label, form.customcontactform-sidebar div label { display:inline-block; width:50%; text-align: right; } form.customcontactform div label.checkbox, form.customcontactform-sidebar div label.checkbox { display:inline; text-align: right; }
In order for this to work, you have to use the ‘Default’ style in the ‘Manage Forms’ section.
Forum: Plugins
In reply to: [Custom Contact Forms] Saved Form Submissions/Exporting for Editors?Still haven’t found anything via google. Hoping someone will know here!
Thanks!Forum: Fixing WordPress
In reply to: Edit Post Link Not Showing on PostsSomeone helped me figure it out!
Below is the code I ended up using and it works fine.
<?php $post_id = 171; $queried_post = get_post($post_id); $title = $queried_post->post_title; ?> <p class="columnheaders"><?php echo $title; ?></p> <p class="columntext2"><?php echo $queried_post->post_content; ?> </p> <p class="columntext2"><?php edit_post_link( 'Edit', '', '', $post_id ); ?></p>
Forum: Fixing WordPress
In reply to: Edit Post Link Not Showing on PostsIf I can get the below code to work, I’ll have a solution. The ‘Edit’ does appear below the post, but links to the page edit screen. I’ve tried putting in the post ‘id’ number, and it still points to the page edit screen.
Anyone have any input?
<?php $post_id = 171; $queried_post = get_post($post_id); $title = $queried_post->post_title; ?> <p class="columnheaders"><?php echo $title; ?></p> <p class="columntext2"><?php echo $queried_post->post_content; ?> </p> <p class="columntext2"><?php edit_post_link( __( 'Edit', 'blankslate' , $id = 171 ), '<span class="edit-link">', '</span>' ) ?></p> <?php endif; ?>
Forum: Fixing WordPress
In reply to: Edit Post Link Not Showing on PostsI’m still searching for online answers and it seems like this person had the same issue I’m having, working with queried posts. Unfortunately he never received an answer.
So this got me rethinking my question; is there specific post edit link code that I can place within the queried code?
<?php $post_id = 171; $queried_post = get_post($post_id); $title = $queried_post->post_title; ?>
I tried experimenting and putting the below after the ‘$title =’ and there was an error.
$edit_post_link( __( 'Edit', 'blankslate' ), '<span class="edit-link">', '</span>' );
Thanks!