Please disregard the 'View article...' shown at the bottom of many posts as this is the result of restoring old forum posts from a backup.

dleffler

Updated software to v2.5.2

About

Username
dleffler
Joined
Visits
461
Last Active
Roles
Guest, Member, Administrator

Comments

  • I assume this is a secure (https) site? What does the browser debug 'console' tell you when you load the page? There's an article at https://www.sitepoint.com/improving-web-security-with-the-content-security-policy/ which talks to inline-scripts nea…
  • Nothing like that, and working with the database would likely end up taking more time than simply making a list of the containers/modules/actions/views on the original page and manually recreating it. There was something called 'Page Sets/Template…
  • There is no way to copy containers/modules per se...but here are some workarounds depending on what your intent is: * If you simply want to 'share' the content and have it appear in two places (on two pages), create the new page, add the same modul…
  • If you're logged on as a super-admin, under the Super-Admin Tools of the Exponent menu, you'll find 'View Recycle Bin'. Depending on the number of total items in the recycle bin, it may take a while to display, but there is a 'Empty Recycle Bin' but…
  • 'Pages' are stored in the 'section' table where parent = 0 is a top level page/menu or parent = -1 is a standalone page (or parent = xx is a sub-page of it's parent) ALL the content/modules of that page (along with the other pages you deleted) was …
  • On second thought...after looking at some other ecommerce systems AND wanting a much simpler integration (coding) approach...I'll attempt to add another 'Group Global Permissions/Restrictions' of 'tax exempt' to user groups. In most cases, an ecomme…
  • There is no inherent way at present. It would have to be done (currently) by opening up the order and adjusting/editing the totals. It might be possible to add something into the next code release...So I need some feedback from you. The bigger ques…
  • Ok, there is now a fix posted in the pre-release code for either v2.3.8patch4 or v2.3.9... - regression fix several 'minify' problems;    - minfy has probably been broken since exp v2.3.8 with the move to minify v2.3.0 we failed to customize its c…
  • The problem is related to webshim attempting to load its modules based on how it was loaded itself. CKEditor used to also have this issue. Your easiest (temporary) fix is to turn off that setting (along with 'Combine YUI3 items' which also seems to…
  • Not really sure, but what you have above is the css, as we load all the javascript at the bottom of the page (since v2.3.0 as recommended by pagespeed)...having said that and looking around google, it appears that when you load a lot of css, they wo…
  • Here is a jquery widget/app https://www.jssor.com/demos/list-slider.slider And here is something simpler http://bootsnipp.com/snippets/featured/tabbed-slider-carousel-inspired-by-sevenxde or http://bootsnipp.com/snippets/RAkKB or http://bootsnipp.co…
  • This is an older (2012) YUI3 based slider.  Off hand the easiest fix is to add some more slides (1?) or to increase their size to increase the overall height of the tabs (selector) on the left.  Because the main image is floating, it's hard to set t…
  • {google_map unique="mymap" address="123 Main St, Lanesville, IN 41772"} also accepts a 'height' param integer, or defaults to 190px.  'address' could also be an 'address' object id.
    in google maps Comment by dleffler May 2016
  • Remove the #topnavbar from the first line of the javascript so it is only looking for 'a.loginpopup'.  The code above assumes it is within the main menu (#topnavbar) element.
  • Sorry, I'm not seeing the change/fix in that posting
  • Would you mind posting the fix here as a tip for the future. Many, including me work with subfolders in the test/pre-deployment environment.
  • Regarding the 'automatic update'...that applies to things such as the navigation menus and attached images where the actual link is created on the fly as the page is built. If you are not able to access the Exponent menu items or your site navigatio…
  • What you're experiencing is that any image embedded within html/wysiwyg text (in the database) contains a hard url/path. This would also apply to many embedded links. However, most of the attached images and links are handled by Exponent dynamically…
  • For a form to be displayed as available to be assigned to an event registration event: * The form must already exist * The form must be set to save data to the database (can not be an email only form) * The form cannot already be assigned to anothe…
  • I've also noticed another problem within your theme/subtheme template(s) (the index.php within your theme folder and all the files with the /subthemes subfolder).  The php call to expTheme::head() is located within the html tags and NOT within the …
  • You may/will have to force a .less file recompile by clearing the CSS/Minify cache.  It works for me locally when I set the value to 2769, however, the slingbar acts a little odd, but can also be fixed by editing /external/bootstrap3/less/newui.less…
  • It equates to the following in the theme's config.php define("MENU_WIDTH",'769'); which is injected into the .less files as a variable via the theme template expTheme::head() call which converts it from a php constant to a .less variable.
  • The route you are taking would more easily be accomplished using the (bootstrap) theme configuration setting 'Mobile Menu Collapse Width' to something like maybe 2000?  I've not tried this, but it's the setting we provide for which would also affect…
  • These are PHP 'warning' not errors.  Your easiest solution may be to Turn OFF error reporting * Got to Site Administration * Under the Development category,you'll see the 'Turn Error Reporting Off' link A better fix would be to 'MIGRATE' the site …
  • As a note, in versions after 2.3.7 we will no longer ship an 'overrides.php' file since it is auto-generated during an installation if needed, and it is where we encourage users to place there site specific settings..therefore we shouldn't overwrite…
  • As a note, in versions after 2.3.7 we will no longer ship an 'overrides.php' file since it is auto-generated during an installation if needed, and it is where we encourage users to place there site specific settings..therefore we shouldn't overwrite…
  • We've effectively re-attached the user records for all past forum 'posters' (or at least those with content now on the new site), so you could effectively reactivate your old account by following the process for a forgotten password on the sign in s…
  • Shouldn't...I see what you mean...will try to find a solution...
  • There's a fairly easy way to switch between database's and configs using the 'Profiles' tab of Site Configuration, Though what you're describing may take a few steps to set up, it's how I work locally with ALL my sites and ALL the sample databases f…
  • I'll put in a check routine instead of just crashing which should at least get one to the server check page to be notified what the problem is. View article...