Forum Replies Created

Viewing 15 replies - 1 through 15 (of 28 total)
  • Thread Starter dguyen

    (@dguyen)

    Thanks 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.

    Thread Starter dguyen

    (@dguyen)

    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.

    Thread Starter dguyen

    (@dguyen)

    circlereader,

    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.

    Thread Starter dguyen

    (@dguyen)

    I 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.

    Thread Starter dguyen

    (@dguyen)

    I 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?

    Thread Starter dguyen

    (@dguyen)

    Here’s the quirky issue. As I was scanning wp-admin/custom-background.php I 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_background saving image upload problem?

    Thread Starter dguyen

    (@dguyen)

    That’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.

    Thread Starter dguyen

    (@dguyen)

    My 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.

    Thread Starter dguyen

    (@dguyen)

    No, 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…

    Thread Starter dguyen

    (@dguyen)

    Thanks 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

    Thread Starter dguyen

    (@dguyen)

    Thanks 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.

    Thread Starter dguyen

    (@dguyen)

    AWESOME works like a charm, you’re the man! Duh… solutions always seem so simple after the fact. Thanks so much!

    Thread Starter dguyen

    (@dguyen)

    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.

    Thread Starter dguyen

    (@dguyen)

Viewing 15 replies - 1 through 15 (of 28 total)