Neil Shimer
Forum Replies Created
-
Forum: Plugins
In reply to: [Optimized Dropdown Menus] OnChange without Go button?Hi Taajuus, I ran into the same problem and came up with what I think is a fix for the situation:
1. Go to your plugins directory and rename the plugin to my-optimized-dropdown-menus (I think this will prevent any updates from overwriting the changes you make).
2. Then in optimized-dm.php change Plugin Name to Plugin Name: My Optimized Dropdown Menus (again trying to prevent an update overwrite).
replace javascript in print_odm_javascript() at line 162 with:
<script type="text/javascript"> /* ref: https://gist.github.com/1918689 */ jQuery(document).ready(function($) { var $widget = $('.odm-widget'); $('ul', $widget).each(function(){ var list = $(this); var select = $(document.createElement('select')) .attr('id',$(this).attr('id')) .insertBefore($(this).hide()) .attr('onchange', $widget.hasClass('odm-new-window') ? 'window.open(jQuery(\'#'+$(this).attr('id')+'\').val(), \'_blank\');' : 'window.location.href=jQuery(\'#'+$(this).attr('id')+'\').val();'); $('>li a', this).each( function(){ option = $( document.createElement('option') ) .appendTo(select) .val(this.href) .html( $(this).html() ); }); list.remove(); }); }); </script>
3. Go into plugins and activate My Optimized Dropdown Menus and I believe that will do what you are looking for.
Seems to work for me, hope it works for you!
Forum: Themes and Templates
In reply to: [Flat Responsive] Mobile menu isn't workingI’m sorry I didn’t back to the post but I did find out that when I stopped and started my apache server that the nav menu would work until I modify anything and then I have to do that again for the nav to work. Not sure what is up with that but…
Anyways, really like your theme overall but I am not crazy about the way the nav accordion overlaps the menu icon and is really small and off to the side so I think it kind of defeats the purpose for mobile navigation. also if there are sub-items the list is always expanded so all items including sub-items are showing without collapsed sub. any ideas off the top of your head to help with any of that?
Forum: Plugins
In reply to: [Car Demon] undefined index and variables in vin-query-adminThat seems to have fixed both issues!
Thanks
Forum: Plugins
In reply to: [Car Demon] search widget does lock upThat appears to have fixed the issue with the search! Thanks for the quick response! Glad we were able to pin point the issue.
The remove search 404 still exists in the other widget but I suppose I could just display:none the element.
Thanks man
Forum: Plugins
In reply to: [Car Demon] search widget does lock upI was testing in Firefox. But I just ran it in Chrome with the same problem as above.
Super Weird…I switched over to XAMPP Lite [PHP: 5.3.1] that I use for running on jump drives…And it doesn’t do the same thing! It acts like it is going to lock up – everything goes grey but then it snaps out of it and everything works then. That’s probably why I didn’t catch it earlier was because it wasn’t happening at that time. And that is why you can’t recreate the problem a/c I think Desktopserver runs XAMPP Lite.
Seems the problem has something to do with running on XAMPP? Unless it is something to do with PHP versions maybe?
Man, that Desktopserver looks like the shiz maybe I’ll get that
Forum: Plugins
In reply to: [Car Demon] search widget does lock upSorry it is on localhost only…here is a link to dropbox 7 zip of files:
https://www.dropbox.com/sh/woi7e2kidl3f87a/AABmJ5sRMFIYFurqBiSc2-ooa?dl=0
Let me know when you get it so I can delete the link. Its pretty generic and there isn’t any private information so I’m not real worried about it more of a prototype learning thing.
Forum: Plugins
In reply to: [Car Demon] errors on search widgetI did have a vehicle assigned as ‘used’ but with this update it fixed both problems! You rock!
Forum: Plugins
In reply to: [Car Demon] errors on search widgetThese errors are showing in [PHP: 5.5.19] & [PHP: 5.6.3]
I think it might have to do with:
mysql_fetch_array — Fetch a result row as an associative array, a numeric array, or both
WarningThis extension is deprecated as of PHP 5.5.0, and will be removed in the future.
BTY, this works without errors in my xampplite [PHP: 5.3.1]
Forum: Plugins
In reply to: [Car Demon] errors on search widgetAlso not showing the drop down for condition but condition category exists for Used.
Forum: Themes and Templates
In reply to: [AccessPress Parallax] Navigation Menu Problems From PostsWell, I backed up everything real good and updated to 1.18 held my breath and everything works including parallax! But, that doesn’t mean that they didn’t break something in their update obviously other people are having problems. My child theme is very heavily overridden so I probably got lucky and already had an override on whatever went wonky. Hopefully, you can revert to 1.17 until they resolve whatever issues occurred. Best of wishes.
Forum: Themes and Templates
In reply to: [AccessPress Parallax] Navigation Menu Problems From PostsI agree there seem to be some hiccups to an otherwise stunning looking theme.
One other thing I thought of – is the problem with your ‘Home’ link? if so then check that your Line 48 in header.php looks like:
<li class="current"><a href="<?php echo esc_url( home_url( '/' ) ); ?>#main-slider">Home</a></li>
I would suggest also registering (free) and posting a descriptive question on their support forum https://accesspressthemes.com/support/
It will probably take a few days for the free support and they will probably ask for the link to your website so they can have a look but they do seem helpful with some issues at least.Forum: Themes and Templates
In reply to: [AccessPress Parallax] Navigation Menu Problems From PostsActually, it is working for me…I just have to close my browser and clear my cache. Any time any change is made I find that I have to close out my browser and reopen or the navigation is goofy. Don’t know exactly why though…
If you are trying the menu to a page outside of parallax then you have a different problem and here is the workaround I came up with: https://accesspressthemes.com/support/topic/just-an-idea-for-keeping-parallax-and-allowing-menu-links-outside-of-parallax/
Not sure about the update destroying your mods but it sounds like you were not using a child theme see https://codex.www.ads-software.com/Child_Themes
Forum: Plugins
In reply to: [Form to Post] Not working CF7 & hidden fields module or plaintextAm I doing something wrong?
Forum: Themes and Templates
In reply to: [AccessPress Parallax] Navigation Menu Problems From PostsI guess you are trying to go to a normal page not a post outside of parallax?
Forum: Themes and Templates
In reply to: [Customizr] Setting custom links for posts in CustomizrI think it has to be a page and can’t be a post or anything else. I just realized there is a premium plugin for something like that but it turned out that I really didn’t need it because I just used the woocommerce shortcodes on a page and then everything worked just fine. Thanks for the reply though!