Jump to content

stapler2025

Members
  • Posts

    15
  • Joined

  • Last visited

Posts posted by stapler2025

  1. Ah yeah that's because you've visited for the first time, it's calling the prices from the API.

     

    You shouldn't be calling prices from the API on every single pageload that displays prices.

     

    And it doesn't work like that, it's not a "first time" thing - its every page load, because every single time you load a page that calls the prices, you're calling the API.  It doesn't cache those unless you set it up to do so.

     

    I do understand that you're trying to be fancy and all, but how much time do you really save by having the pricing automatically updated on your website?

  2. I'd rather not have to do a fresh install and re-create client accounts/services. Hopefully re-installing the plugin will work. If not I'd rather look around the database before I consider a complete re-install.

     

    I'll post my findings soon.

     

    I think what he was suggesting, is do a secondary install, reissue your license for that second install, test to see if it happens, and then reissue back to your primary install.

  3. Go to your plugins, click on Manage next to the Portal plugin.

     

    Click Source, and toss this into the box.  The wysiwyg editor throws <p></p> tags in the template when it shouldn't be doing that (yes, even if you don't touch the template...)

     

    <div class="half section">
    	<div class="icon account">
    		<h1><a href="{client_url}login/">My Account</a></h1>
    		<p>Have an account with us? You can login here to manage your account.</p>
    	</div>
    </div>{% if plugins.support_manager %}<div class="half section">
    	<div class="icon support_manager">
    		<h1><a href="{client_url}plugin/support_manager/client_tickets/add/">Support</a></h1>
    		<p>Need help? You can open a trouble ticket here.</p>
    	</div>
    </div>
    <div class="clear"> </div>{% endif %}{% if plugins.order %}<div class="half section">
    	<div class="icon order">
    		<h1><a href="{base_url}order/">Order</a></h1>
    		<p>Visit the order form to sign up and purchase new products and services.</p>
    	</div>
    </div>{% endif %}{% if plugins.download_manager %}<div class="half section">
    	<div class="icon download_manager">
    		<h1><a href="{client_url}plugin/download_manager/">Downloads</a></h1>
    		<p>Visit the download area. You may need to be logged in to access certain downloads.</p>
    	</div>
    </div>{% endif %}
  4. Found the issue!  Looks like a bug with the wysiwyg editor.

     

    It's putting the <p></p> tags around "{% if plugins.support_manager %}" for the 3 optional modules, which is making it display funny.

     

    Setting the editor to source, and removing them and saving fixes the issue.

×
×
  • Create New...