justinsias
Forum Replies Created
-
For anyone interested. I chose a different route for this.
<?php $featured_artists = get_custom_field('featured_artists'); $artists = json_decode($featured_artists); foreach($artists as $index) { $artist_id = $index; $artist_post = get_post($artist_id); $artist_name = $artist_post->post_title; $artist_content = $artist_post->post_content; echo '<em>'.$artist_name. '</em><br />'.$artist_content.'<br><br>'; } ?>
That is what I thought as well. I’ve set the .htaccess file to read only and I sure hope that takes care of it. But, anyway, kudos on the plugin! Very powerful/flexible stuff.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 not giving me the correct Reply ToSo far, this is NOT resolved. I have seen many threads where this is NOT resolved. I was hoping that whoever made the plugin might know what the problem is. As of now, it appears easier to build your pwn form than use a plugin. That is sad.
got it working! just had to update with a new version
Forum: Fixing WordPress
In reply to: wp_nav_menu function helpActually, i can get it to work on the right side, but not the left. Wonder what’s up with that?
https://www.healthybusinessradio.com/Forum: Fixing WordPress
In reply to: wp_nav_menu function helpI am having a similar problem as I haven’t used this new feature before. However, I need to wrap some images in the menu bar to the left of the auto-generated menu. I can’t figure out a way to use this cool feature and get other items that are not standard menu links into the same line as the menu without it creating a line break.
You’ll see I am trying to add an image called facebook.jpg to the left of the menu
—-
<img src=”wp-content/themes/HealthyBusiness/images/facebook.jpg”>
<?php wp_nav_menu( array( ‘container_class’ => ‘menu-header’, ‘theme_location’ => ‘primary’ ) ); ?>
—-However,
this is the HTML that is being generated:
————-
<img src=”wp-content/themes/HealthyBusiness/images/facebook.jpg”>
<div class=”menu-header”><ul id=”menu-healthy-business” class=”menu”><li id=”menu-item-464″ class=”menu-item menu-item-type-custom current-menu-item current_page_item menu-item-home menu-item-464″>Home
<li id=”menu-item-458″ class=”menu-item menu-item-type-post_type menu-item-458″>About
<li id=”menu-item-459″ class=”menu-item menu-item-type-post_type menu-item-459″>Featured Video
<li id=”menu-item-460″ class=”menu-item menu-item-type-post_type menu-item-460″>Resources
<li id=”menu-item-461″ class=”menu-item menu-item-type-post_type menu-item-461″>Sponsorships<li id=”menu-item-462″ class=”menu-item menu-item-type-post_type menu-item-462″>Wellness Store
<li id=”menu-item-463″ class=”menu-item menu-item-type-post_type menu-item-463″>Contact Us
</div>————-
I would like the end result to be:
————-
<div class=”menu-header”>
<img src=”wp-content/themes/HealthyBusiness/images/facebook.jpg”>
<ul id=”menu-healthy-business” class=”menu”><li id=”menu-item-464″ class=”menu-item menu-item-type-custom current-menu-item current_page_item menu-item-home menu-item-464″>Home
<li id=”menu-item-458″ class=”menu-item menu-item-type-post_type menu-item-458″>About
<li id=”menu-item-459″ class=”menu-item menu-item-type-post_type menu-item-459″>Featured Video
<li id=”menu-item-460″ class=”menu-item menu-item-type-post_type menu-item-460″>Resources
<li id=”menu-item-461″ class=”menu-item menu-item-type-post_type menu-item-461″>Sponsorships<li id=”menu-item-462″ class=”menu-item menu-item-type-post_type menu-item-462″>Wellness Store
<li id=”menu-item-463″ class=”menu-item menu-item-type-post_type menu-item-463″>Contact Us
</div>————-
any ideas?Forum: Plugins
In reply to: Remove Preview Capability (Possibly Per Role?)hi. did you ever figure this out? i m trying to remove those links as well.
Forum: Plugins
In reply to: [Plugin Contact Form 7] – Recover lost emailAny luck here?
Forum: Plugins
In reply to: [Plugin: Contact Form 7] Missing info .. Is it possible to retrieve emails?I take it you were not able to resolve this? I have a similar problem to figure out.