dguyen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Meta Box values not savingThanks fonglh… How could I have missed that.
I originally used the example provided by dbt but thought I could reduce the excess code to write something more simple according to my needs.
I guess I’ll just commit to using dbt’s new version 3.01. Thanks
I understand this is most likely a Constant Contact issue but has anybody found a resolution to this yet that helps prevent this? Is it even possible?
Thanks a bunch for your help guys.
Forum: Fixing WordPress
In reply to: List customy taxonomy terms associated with current post.So far I’ve decided to separate the terms with a comma, then exploding the terms and include a foreach statement.
<?php get_the_term_list( $post->ID, 'skills', '', ', '); $skills = explode(',',get_the_term_list( $post->ID, 'skills-proficiencies', '', ', ')); foreach ($skills as $skill) { ?> <li><?php echo $skill; ?></li> <?php } ?>Someone please let me know if there’s a better solution.
Forum: Networking WordPress
In reply to: add custom background function for multisite themecirclereader,
I did not find the cause of my issue. I did an uninstall and re-install and my issues were resolved. I’m fairly sure my problems lay with my own doing. Most likely somewhere in the .htaccess arena…
Good luck, please post something if you discover anything.
Forum: Networking WordPress
In reply to: add custom background function for multisite themeI tried to upload two different pictures and a graphic (PNG). One picture that was the same as one uploaded using the Media Uploader and a completely separate JPG. Both pictures work fine when using the custom Header option. It’s just the damn custom Background option.
I’ve re-installed WP (automatically), I think I might just have to uninstall fresh reinstall…
Andrea_r thanks for your persistence. Don’t worry about giving this much more attention. It’s gotta be something I’ve messed with. If you come up with anything “A HA” like, then please post, otherwise… I’ll keep plugging away and re-post when I find the solution.
Forum: Networking WordPress
In reply to: add custom background function for multisite themeI understand. I know for sure it’s a problem with my own install. I found that to be once both installations (multisite and default) exhibited the same issue.
I want to verify… under “Background” are there options for Position, Repeat, and Attachment?
Forum: Networking WordPress
In reply to: add custom background function for multisite themeHere’s the quirky issue. As I was scanning
wp-admin/custom-background.phpI noticed there are suppose to be headings for:- Positions
- Repeat
- Attachment
But I don’t see those additional options in my admin area under Background? What does anyone else think? As for the blogs.dir files and uploads folder, I have no problem uploading images (via Media uploader)…
Any suggestions to my
add_custom_backgroundsaving image upload problem?Forum: Networking WordPress
In reply to: add custom background function for multisite themeThat’s the thing, I don’t get any errors… it says it’s saved, but doesn’t show in the preview or on show up on the actual site. I also don’t see the file in uploads, either! I assume the background image saves to that directory, no?
I must have something wrong! I just can’t figure it out.
Forum: Networking WordPress
In reply to: Make specific page templates available to certain usersMy obstacles as you recognized were:
- restricting access to paid user
- allowing purchased page-templates to span multiple-themes
I thought if there were a way for all the new themes to inherit a repository of page-templates (sorta like a child theme inherits the parent theme), then all I would need to work on is the “restricted access” part.
Forum: Networking WordPress
In reply to: Make specific page templates available to certain usersNo, no, no. No marketing here. I’m creating a site for people to display their portfolio of work (whatever they please, whether it’s written, graphic designs, print, web, coding, etc…) and the different page-templates would allow the user to decide how that particular page is laid-out or styled.
ie. Let’s say the default theme only comes with a default-pagetemeplate. They want to display their “written” masterpiece, they could then purchase my writers-pagetemplate ($1) and then they also want to display their greeting card designs, so they could then purchase my printdesign-pagetemplate… now they would have access to two more page-templates.
Does any of that make any sense? I like info graphics, my written explanations are not so concise…
Forum: Networking WordPress
In reply to: Make specific page templates available to certain usersThanks Andrea_r, you’ve confirmed my notions.
I was hoping to create a parent theme for my network that included various page-templates. I wanted to make those page-templates only available to certain users who’ve paid for them. It looks as if, that’s not going to happen.
I guess I’ll have to offer various themes with certain page-templates included.
Thanks again Andrea_r
Forum: Networking WordPress
In reply to: Creating a custom wp-signup pageThanks Andrea_r and yianniy… I’ve messed around with creating a page template with copied wp-signup.php code, but I’m not sure me changing all the references/links to wp-signup to match my needs is worth it.
I’ve decided the best option so far is to use @andrea_r ra-signup-css plugin and style the page that way. Thanks Andrea.
Forum: Fixing WordPress
In reply to: How to enter multiple values for a key using a comma?AWESOME works like a charm, you’re the man! Duh… solutions always seem so simple after the fact. Thanks so much!
Forum: Fixing WordPress
In reply to: How to enter multiple values for a key using a comma?Thanks for the response… Hmmm… I’m getting an invalid argument do to my use of
foreach-here is the code I’m using:<?php $figures = get_post_meta($post->ID, 'example-images', false); foreach ( $figures as $figure ) { ?> <div class="wp-caption"><a href="<?php echo $figure; ?>"><img width="200" src="<?php echo $figure; ?>"</a><p class="wp-caption-text">Figure 3b</p></div> <?php } ?>Key: example-images
Value: “URL of image”In my how-to posts, I display the picture examples along side the content. The pictures show up fine as long as I enter each image’s URL separately. I would like to enter many URLs separated by comma. Rather than one at a time. I hope I’ve explained myself correctly. Using the Key one time is fine with me as long as I can use comma separated values. Thanks again for your time.
Forum: Fixing WordPress
In reply to: Mapped subdomain still shows subdomain URL