Bryan Focht
Forum Replies Created
-
Forum: Plugins
In reply to: [Reseller Store] Change Text of Search ShortCodeHi Josh,
Yes you can. Here is some examples of shortcodes.Forum: Plugins
In reply to: [Reseller Store] Search results as popupHere is some updated CSS and Javascript that work a little better with the
Forum: Plugins
In reply to: [Reseller Store] cart count not updatingThe source code for the domain search is open source and available here.
https://github.com/godaddy/domain-searchHere is some sample JavaScript and CSS that will create a modal popup.
JavaScript https://pastebin.com/Z1EzG7j4
CSS https://pastebin.com/4MMx55bzThe standard cart count only updates after the shopper adds the items to cart by clicking Continue to Cart.
Forum: Plugins
In reply to: [Reseller Store] Domain Search not formatting correctly with my themeThank you for your feedback. Please update to version 1.5.0 of the plugin. We have added additional css classes for bootstrap based themes.
Forum: Plugins
In reply to: [Reseller Store] Default Search on Page Load without Clicking on ButtonYou pretty much had it. Just wrap in an if statement and then add the jquery button click.
if (domain_name) { $(".search-field").val(domain_name); $('.rstore-domain-search-button').click() }
Forum: Plugins
In reply to: [Reseller Store] Move Price and Add to CartYes you can use CSS to format and move the price and cart buttons.
for example you can apply the follow css style change to move the price
.rstore-pricing { position: relative; top: 65px; left: 65px; }
and here is a style change to move the button
.rstore-add-to-cart { position: relative; top: -15px; left: 200px; }
Every site and theme is a little different so these are just meant as examples.
Here is some more documentation about position https://developer.mozilla.org/en-US/docs/Web/CSS/positionAlso you may have to research your theme or page builder to determine how to modify the css on your site. You can also use a plugin like Scripts n Styles which will allow you to add CSS to your site.
Forum: Plugins
In reply to: [Reseller Store] Missing ProductsPlease update to the latest version of the plugin and then deactivate the plugin and reactivate. This should import missing products. If you continue to experience an issue please contact support.
Also after updating to the latest version you can try doing a bulk restore as shown in this video.
Forum: Plugins
In reply to: [Reseller Store] Not compatible with Caldera FormsThanks for reporting this compatibility issue. We have updated the menu placement to resolve this issue.
Forum: Plugins
In reply to: [Reseller Store] Where are the shortcodes?On the plugin readme you will see a FAQ section. With the question
What shortcodes are supported?
For example to add a product pod to your page you can use this shortcode, where you will want to replace the number 10 with the post id for the product you wish to display. To find the post id number, watch this demo https://youtu.be/RlyB8WvJmbY?t=18m38s
[rstore_product post_id=10 show_title=1 show_content=1 show_price=1 redirect=1 button_label="Add to cart" text_cart="Continue to cart" image_size="original" ]
Forum: Plugins
In reply to: [Reseller Store] Cart Not UpdatingWill you let me know what browser you are using? I tested your site with Chrome browser and the product added to cart for me. I have found that some browser security settings and also browser Ad Blocking plugins are preventing the plugin from writing the proper cookies.
Forum: Plugins
In reply to: [Reseller Store] Product ButtonThanks for using our plugin. Every theme is a little different, but the button styles can be changed with CSS. Your theme may allow your to update the CSS or you may have to install another plugin to add custom css to your site such as Scripts n Styles.
Here is some sample CSS to get you started
button.rstore-add-to-cart.button { height: 27px; color: #ffffff; width: 100px; } button.rstore-domain-search-button.submit.button { height: 48px; color: #ffffff; width: 100px; }
Forum: Plugins
In reply to: [Reseller Store] Customize Cart Page?Thanks for the feedback. Here are some themes that we test the plugin with
https://www.ads-software.com/themes/primer/
https://www.ads-software.com/themes/activation/The source code for the themes are available on GitHub which can be found as the Theme Homepage link on the theme details page.
Forum: Plugins
In reply to: [Reseller Store] FYI – Does not understandThanks for the bug report. I have added this to our issue tracking system to test and fix.
Forum: Plugins
In reply to: [Reseller Store] Plugin not workingChecking in if you were able to contact our support team and get the plugin working?
Hi,
It looks like your install is failing on this line of code https://github.com/godaddy/wp-reseller-store/blob/master/reseller-store.php#L34This is usually caused by an older version of PHP that doesn’t support the use statement. However you mentioned you are using version 5.5.37 which should support it.
We test the plugin on version 5.4 and version 7.1 for compatibility. I will see if I can get another server setup specifically with PHP 5.5.37 on CentOs.
We do have an early version of the plugin that supported older versions of PHP that you can try https://files.secureserver.net/0sUAhm1YlXrZ9C but we really do recommend you use the latest version of PHP and the plugin.