Tips and Tricks HQ Support

Support site for Tips and Tricks HQ premium products

  • Home
  • Contact Us
  • Documentation
  • Forum Home
    • Forum
    • Forum Search
    • Forum Login
    • Forum Registration
You are here: Home

amin007

  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 15 posts - 376 through 390 (of 5,807 total)
← 1 2 3 … 25 26 27 … 386 387 388 →
  • Author
    Posts
  • July 24, 2011 at 7:20 am in reply to: Custom Pagination #34587
    amin007
    Participant

    I updated the pagination code to make it a little more user friendly. Please get an updated build of eStore from here and check it out:

    https://support.tipsandtricks-hq.com/update-request

    You will also need to update the extra shortcodes plugin if you were using it:

    http://www.tipsandtricks-hq.com/ecommerce/wp-estore-shortcodes-and-functions-reference-460

    July 24, 2011 at 4:07 am in reply to: Page Number Highlighting #34597
    amin007
    Participant

    Can you please post a URL to the page in question and let me know which shortcode you are using on that page?

    July 24, 2011 at 3:37 am in reply to: Buddypress not recognizing eMember login without double refresh #34464
    amin007
    Participant

    Basically, there is a bit of a plugin load order issue here. BuddyPress is generating that page before eMember log in action happens. Using an “After Login” redirection should help.

    Please go to the “Page/Forms Settings” menu of eMember and specify a URL in the “After Login Redirection” page (it could even be this same page). This should help resolve this issue (from users point of view they won’t know the difference).

    July 24, 2011 at 2:08 am in reply to: Dropdowns? Or more than four Variations? #34443
    amin007
    Participant

    Your select input code is wrong. Creating an HTML link and creating a select boxes are two different things. If you are not fluent with HTML code then stick to a bullet list of links as it will save you unnecessary hassles.

    July 24, 2011 at 2:00 am in reply to: G-forms integration wp-affiliate #34607
    amin007
    Participant

    I actually ended up updating the documentation for the gravity forms integration in an effort to make it simpler. Please have a look at the updated documentation and let me know if the examples are easier to understand now:

    http://www.tipsandtricks-hq.com/wordpress-affiliate/gravity-forms-and-wp-affiliate-platform-integration-385

    July 24, 2011 at 1:21 am in reply to: G-forms integration wp-affiliate #34606
    amin007
    Participant

    If you are not a developer then start with one form first. Trying to integrate multiple forms at once is a recipe for disasters as you can easily mess up the “if” and “else” condition blocks. Get one form working with a clean block of code then you can replicate it for your other forms.

    From your explanation it looks like you may not have been assigning the correct form field with the PHP variable.

    The following block of code gets the values from the gravity forms input fields. It is very important that you assign the correct number that corresponds to the actual input field in the “input_X” (X being the number that corresponds to the input field).

    $reference = $_POST["input_X"]; //Unique ID
    $clientdate = (date ("Y-m-d"));
    $clienttime = (date ("H:i:s"));
    $buyer_email = $_POST["input_X"]; //Email
    $ipaddress = $_POST["input_X"]; // Client IP Address

    As a test you can hardcode some values into these fields instead of taking them from the form (this is just for temporary testing). You can use the following and then check if the values go to the correct fields after you submit the form:

    $reference = "unique-id-123"; //Unique ID
    $clientdate = (date ("Y-m-d"));
    $clienttime = (date ("H:i:s"));
    $buyer_email = "test@gmail.com"; //Email
    $ipaddress = "10.10.2.1"; // Client IP Address

    If the above hard coded values go to where it is suppose to then you know that it is just a matter of figuring out how to correctly hook the correct “input_X” number from the form that you created.

    July 24, 2011 at 12:47 am in reply to: Protect all comments in post #22972
    amin007
    Participant

    By default comments on a protected post or page is also protected unless you check the “Protect Comments Separately” checkbox from the settings menu which lets you manually set protection for each comment.

    Do not show member’s only stuff to anonymous users – This is done via conditional code tweaking. eMember has conditional functions that you can apply around your navigation menus, sidebar widgets etc to make them only appear if a member is logged in. The following documentation has examples of this:

    http://www.tipsandtricks-hq.com/wordpress-membership/wp-emember-miscellaneous-tweaks-248

    eMember can’t magically apply conditions to your templates (the navigation menus come from your theme’s template). Any output that is coming from your template can be wrapped around certain eMember conditions and it will be visible to users who meet that condition.

    July 24, 2011 at 12:35 am in reply to: Account inactive after last payment ? #34614
    amin007
    Participant

    If you are using a Subscription/recurring payment type button then at the end of the subscription PayPal will send another notification which triggers eMember to cancel the account (as the subscription is complete). Is it not giving the member access for the last month’s payment?

    What value do you have for the “Subscription Duration” field for this membership level?

    July 24, 2011 at 12:27 am in reply to: WP Member – Time format of member expiry date #34512
    amin007
    Participant

    The date value comes directly from your server’s PHP engine. When using the date function you might be able to specify the language that you want PHP to use in order to output the date value.

    July 24, 2011 at 12:23 am in reply to: Error message in "Add/Edit Products" related to Thumbnail Image URL #34604
    amin007
    Participant

    If you know for sure that the URL of the PDF file is correct then simply ignore this message (most likely your hosting provider has made some changes so the plugin is having a tough time when it tries to ping and validate the file URL). This message is only given to the admin as a means to help you (so you don’t make mistake in the URL which can show file not found errors to your customers).

    July 24, 2011 at 12:18 am in reply to: Thumbnails in Internet Explorer not showing correctly. #34523
    amin007
    Participant

    “Here is how I fixed it” – this type of followup is usually not possible for theme specific CSS problems as each theme has different CSS and somewhere they broke the WordPress’s coding guideline which is the source of the issue. One solution is not going to apply to all themes that exhibit CSS related display issues.

    I had a look at your theme’s CSS and I see the following CSS which looks a bit odd (Older IE versions are not smart so it maybe getting confused. Can you please remove the following CSS code from your theme and refresh the page to see if it makes any difference?

    #content img, #content p img {
    max-width: 100%;
    }

    July 23, 2011 at 11:54 pm in reply to: Custom Pagination #34584
    amin007
    Participant

    Which page in eStore are you referring to?

    July 23, 2011 at 11:53 pm in reply to: text-only buy now link #30403
    amin007
    Participant

    What do you mean by a HTML+CSS generated button?

    When you use a text link it has to create the button and then submit it so PayPal can accept the data. The intermittent page that redirects is what creates the form and submits the data (there is no other way to do this externally).

    July 23, 2011 at 3:36 am in reply to: Update your download product for my customer? #31683
    amin007
    Participant

    Yeah adding a “category filter” for this shortcode is possible. I will look into it.

    July 23, 2011 at 3:34 am in reply to: Unable to Add Custom Fields #34570
    amin007
    Participant

    Okay, and you have specified a value in all of the following 3 field for the custom field in question?

    Field Name
    Field Type
    Display Order

    Sometimes people forget to enter a value in the “Display Order” field which can cause this issue.

  • Author
    Posts
Viewing 15 posts - 376 through 390 (of 5,807 total)
← 1 2 3 … 25 26 27 … 386 387 388 →

Forum Related

  • Forum Home
  • Forum Search
  • Forum Registration
  • Forum Login

Support Related Forms

  • Contact Us
  • Customer Support
  • Request a Plugin Update
  • Request Fresh Download Links

Useful Links

  • Plugin Upgrade Instructions
  • WP eStore Documentation
  • WP eMember Documentation
  • WP Affiliate Platform Documentation
  • Tips and Tricks HQ Home Page
  • Our Projects

Quick Setup Video Tutorials

  • WP eStore Video Tutorial
  • WP eMember Video Tutorial
  • WP Affiliate Platform Video Tutorial
  • Lightbox Ultimate Video Tutorial

Our Other Plugins

  • WP Express Checkout
  • Stripe Payments Plugin
  • Simple Shopping Cart Plugin
  • Simple Download Monitor

Copyright © 2025 | Tips and Tricks HQ