Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter dscouron

    (@dscouron)

    So if I create an entirely new field in WP-members – let’s say a text field with “Favorite Color” as the label – I would have to have previously created a new meta field within WC somehow and use that key or else whatever is entered in the “Favorite Color” field will not propagate?

    Basically, I would have to create a billing-favorite-color meta key in WC before this would work via WP-Members.

    Thanks.

    Yea, I’ll bump this. I’ve been trying to find a solution to the same problem.

    It seems like if grouped products are meant to make the buying process of multiple products easier for the consumer, why would they have to then choose which of the grouped products they want?

    An add all to cart function would be very helpful.

    Forum: Fixing WordPress
    In reply to: custom fields

    No expert, so could be off here, but my take would be that implementing that feature from within posts using Custom Fields isn’t the best use of that feature, especially if you are trying to carry the same “value” across all posts.

    Maybe a better way to accomplish your goal would be to add a custom field to your user profile. That way, when you want to change the value of “What we are Repatterning This Week”, you would just login, change the value in your profile and it would update it across all pages where you’ve printed that specific meta using the_author_meta($field, $userID).

    Thread Starter dscouron

    (@dscouron)

    Think I’ve figured this out. For anyone who has similar issues in the future, I believe that the solution has to do with whether or not you are using the:

    get_post_meta($post->ID, '$key', true);

    within The Loop. For anyone experiencing similar problems, I have found that changing $post->ID to get_the_ID() if you are outside the loop should do the trick.

    Thread Starter dscouron

    (@dscouron)

    Accessed the .htaccess file, tried renaming it, re-logged into the admin area and still can’t access the Permalinks page. This is the entirety of my .htaccess file

    # Use PHP5 Single php.ini as default
    AddHandler application/x-httpd-php5s .php
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    Thread Starter dscouron

    (@dscouron)

    For some reason, I’m unable to view and modify the .htaccess file. My host keeps the file hidden in the control panel. I’ve emailed them on how to access the hidden files. Is there possibly a way to access the permalink structure via the database?

    Thread Starter dscouron

    (@dscouron)

    Thanks for the heads up on the caching. I hadn’t thought that through. After I submitted the topic though, I realized that specifically in this situation, there’s no query, it’s just a static link. It’s probably just slow because of the fact that there are over 15000 total pages that it has to go through in the db to get to the right one. Is it just a situation where with that many pages, it’s going to slowdown no matter what I do? Is there anything else that I’m possibly overlooking (other than caching) that could help?

    Thanks

Viewing 7 replies - 1 through 7 (of 7 total)