Bryan Focht
Forum Replies Created
-
Forum: Plugins
In reply to: [Reseller Store] Shortcodes PHP codeHere are some examples of the plugin short codes
https://pastebin.com/0L2EmqaKHere are some product icon shortcodes in the plugin
https://pastebin.com/DvXNZEJuForum: Plugins
In reply to: [Reseller Store] Reseller Plugin Shortcodes – JSON ERRORFrom what I can tell with the shortcode, a smart quote is being used instead of a standard quote around the 5. Either remove the quotes around the 5 or use standard quotes.
[rstore_domain_search page_size=5]2. You can alter the look of the search box with CSS. One example css might look like
.rstore-domain-search .search-form .search-field { width: 100%; }
3. The three domain shortcodes that are available are
[rstore_domain]
[rstore_domain_search]
[rstore_domain_transfer]4. If you are using a page builder such as Gutenberg, Beaver builder, or WPBakery on your page/post there are widgets/blocks available. Otherwise you will need to use shortcodes on the classic editor.
Forum: Plugins
In reply to: [Reseller Store] shortcode parametersHere are some shortcode examples
Forum: Plugins
In reply to: [Reseller Store] Page Not FoundDo you have the woocommerce plugin installed also? You may have to change the permalinks if both plugins are using
products
as the base permalink.Forum: Plugins
In reply to: [Reseller Store] Page Not FoundIn the admin dashboard, go to Settings->Permalinks and confirm that the permalinks are configured properly. Sometime WordPress is able to detect if there is a problem and will make a suggestion
In addition you can override Reseller Product Permalinks at the bottom of the settings page.
Forum: Plugins
In reply to: [Reseller Store] Global ControlThanks for the feedback. We are evaluating whether to incorporate some of these settings into the main plugin. In addition we have spoken to the WordPress team about including the advanced plugin into www.ads-software.com (and that is in the works).
One advantage of keeping it as a separate plugin is the ability to easily disable all global settings without affecting the core plugin.
I completely understand your concern downloading from a third party location. The plugin is available as open source https://github.com/Resellers/wp-reseller-store-settings
Alternatively you can add a filter to your site which will accomplish the same setting
add_filter( 'rstore_product_redirect', function() { return false; } );
- This reply was modified 5 years, 7 months ago by Bryan Focht.
- This reply was modified 5 years, 7 months ago by Bryan Focht.
Forum: Plugins
In reply to: [Reseller Store] Global ControlThe settings menu will appear by installing a separate plugin which is available for download here https://go.me/advanced
After installing the plugin there is a global option to disable “Redirect to cart”
Forum: Themes and Templates
In reply to: [Turnkey Storefront] Menu Mobile don’t workuploaded version 1.2.3 that should fix the menu.
Forum: Themes and Templates
In reply to: [Turnkey Storefront] Menu Mobile don’t workok, I understand. Working on the fix.
Forum: Themes and Templates
In reply to: [Turnkey Storefront] Menu Mobile don’t workI made some changes on my development site. Will you test my changes and see if you have the same issues. Here is a link to my development site.
Forum: Themes and Templates
In reply to: [Turnkey Storefront] Menu Mobile don’t workThanks @dgarboleda
I just tested your site on my windows 10 system. What is not not working in the mobile menu for you? Have you tried refreshing your browser cache?Forum: Themes and Templates
In reply to: [Turnkey Storefront] Menu Mobile don’t workHi @dgarboleda, Can you provide an example? What browser and operating system are you using?
Forum: Themes and Templates
In reply to: [Turnkey Storefront] Social Menu ?Thanks for reporting this issue. I have uploaded the missing icons and published a new version. Please install 1.2.1 or later and the Social Menu will display correctly.
Forum: Plugins
In reply to: [Reseller Store] domain search shortcode@joshaxessnetworkcom I noticed you posted the link to your site so I was able to take a look.
I used the Chrome inspector and I noticed you have two headers on your site, once is a called fw-sticky-header and another is called fw-header. Are you able to remove the shortcode from the fw-sticky-header?
I will see if I can reproduce similar behavior on my development site, but the modal pop-up looks like it is grabbing the domain search from the fw-sticky-header and moving it to fw-header which is should not be doing.
I’ll see if I can fix this issue, but in the meantime try to remove the shortcode from one of the headers.
Forum: Plugins
In reply to: [Reseller Store] domain search shortcodeHi Josh, yes the html that is rendered did change in the shortcode and widget. They are the exact same regardless if you use a shortcode or widget.
We tried to make the change have the least impact because had to wrap the “Continue to cart” button in a FORM tag. This is what most likely is causing CSS issues for you.
The reason we had to wrap the button in a FORM tag was to give maximum browser compatibility, specifically with Safari on iPhone devices which have a pretty strict Privacy setting. These privacy settings were preventing the ability to add domains to cart.