cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Auto Share] Post to Pages on FacebookHello MIDAE,
We have updated new version of this plugin which now lets share your product on FB pages also.
Thanks
CedCommerceForum: Plugins
In reply to: [Recently viewed and most viewed products] How to use shortcode only?Hello Bangrobe
We have fixed it and launched new version please update your plugin.
You can simply use shortcode separately, if you want to use the shortcode on product detail page but don’t want to use the default block then simply disable it from plugin’s admin setting.
Please do reply if it works for you.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Home button does not show“Primary Navigation” is a checkbox positioned at the bottom in th menu page. Check that checkbox and save menu. Also see the link of the button by expanding that. Is the button you adde( Home ) is a custom link or a page? If it’s a custom link, then try to crate a page named Home and then add it to the menu and see if it’s working.
Forum: Fixing WordPress
In reply to: 404 not found error form Page menu linksHello,
Your htaccess file looking correct one thing you check that go to setting permalink and set permalink to Default (ex :http://example.com/?p=123) then save and check the site
ThanksForum: Fixing WordPress
In reply to: 404 not found error form Page menu linksHello,
I have checked the site. I thought that there is some issue with htaccess file. Can you share your htaccess code here. So that I can help you in resolving your issue.
ThanksForum: Fixing WordPress
In reply to: 404 not found error form Page menu linksHello muleakshay29,
Did you change the menu item (HOME) URL field to http://demo.igainspark.com/?Forum: Fixing WordPress
In reply to: 404 not found error form Page menu linksHello muleakshay29,
Login to Dashboard then go to Appearance > Menus. Select your menu and select the menu item “HOME” which redirected to “The requested URL was not found on this server….” change the “HOME” menu item url to site url i.e “http://demo.igainspark.com/” then click on save. After that go to Settings > Permalinks and click on Save Changes button then test the site.
ThanksForum: Networking WordPress
In reply to: Subdomains not workingHello patelnagarnews,
What step you are following to setup subdomain site. So that we can figure out where you are doing wrong.
ThanksForum: Fixing WordPress
In reply to: Remove featured image from postHello ellebea20,
Please add this code in your theme functions.php file<?php function hide_post_thumbnail_image( $html ) { if ( ( is_singular( 'post' ) && is_single() )) { return ''; } else { return $html; } } add_filter( 'post_thumbnail_html', 'hide_post_thumbnail_image' ); ?>Hope this will help you.
ThanksForum: Fixing WordPress
In reply to: Home button does not showHi Walter,
Go to http://yoursite.com/wp-admin/nav-menus.php and see if the button (you added and not showing) is there. See if “Primary Navigation” is checked and if not then check that and save menu. And check if it’s all correct. If not, then can you provide a link of your site.
Hope all will be good.
Forum: Fixing WordPress
In reply to: "rel='https://api.w.org/' json" website url is wrongIf you want to change that url, you can change that either using site url or statically, by the filter “rest_url” as told earlier, or like below.
<?php add_filter( 'rest_url', 'your_function' ); function your_function( $url ) { return 'http://mysite.com/site/wp-json/'; } ?>You can change the return url accordingly.
Forum: Fixing WordPress
In reply to: Media Upload http errorHey clairelou,
It seems your media file is bigger in size, and possibly the size of media file you’re uploading is not allowed from your server. Please try once uploading an image of less that 100kb and see if it’s working fine. If the less than 100kb file is uploading properly then might be possible, that you server has a limit of media upload.
Forum: Fixing WordPress
In reply to: Is another instance of WordPress needed for subdomain?Hello,
The database for each domain is separate,so the main domain entries will not be affected by sub domain. for reference to create a network you can checkout following these links – http://www.wpbeginner.com/wp-tutorials/how-to-install-and-setup-wordpress-multisite-network/
https://codex.wordpress.org/Create_A_Network
Thanks hope this will help you.Forum: Fixing WordPress
In reply to: Change menu background colorHello muthonig,
Change fallowing css in style.css to set the menu background colour :
.site-header { background: rgba(31, 31, 31, 0.95) none repeat scroll 0 0; //change it here: background: #FF00FF none repeat scroll 0 0; height: 100%; left: 0; overflow-x: hidden; overflow-y: auto; padding: 50px; position: fixed; top: 0; width: 300px; }Forum: Fixing WordPress
In reply to: Unable to get to my WP-Admin pageHello,
seems like the plugin “fma-products-tabs-pro” is causing this issue, all you need to disable the plugin and test again, as you said you’re unable to login for delete the corrupt plugin-in so for this you can alternatively rename the plugin folder name from cpanel inside the wp-content > plugins, the plugin will automatically disabled after renaming.Hope this will help you.
Thanks