cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: can we implement WordPress SSL certificate for ios and android appHi divyasekaran,
It will work.
When you have implemented SSL, you must have written a rewrite rule in your htaccess for redirect the request for http to https. If it is so, both your android and ios app will work fine, as their request to http will redirect to https because of redirect rule in htaccess.
ThanksForum: Fixing WordPress
In reply to: How to prevent Editors seeing media uploaded by other users?you can restrict this condition inside the administrative area of wordpress by wrapping up the function code inside this condition if(is_admin()).
Thanks.Forum: Fixing WordPress
In reply to: Center menu and move to bottom of blue headerAdd following style in css file
#site-navigation ul {
margin-top: 40px;
}
and it will also work for responsive design.
Enjoy !!!Forum: Fixing WordPress
In reply to: How to prevent Editors seeing media uploaded by other users?Hello Leo,
place this code in your functions.php,function show_my_gallery( $wp_query ) { if(!current_user_can('manage_options') && $wp_query->query_vars['post_type']=="attachment"){ if ( current_user_can( 'level_4' ) ) { global $current_user; $wp_query->set( 'author', $current_user->id ); } } } add_filter('parse_query', 'show_my_gallery' );because of this admin can see all media and editors can see only there uploaded media, if you want to apply this for admin too then just remove the “!current_user_can(‘manage_options’)” from the condition.
Hope this will help you
Thanks.
Try to rename or just add an “underscore(_)” to your plugins folders using ftp, then all the plugins will be deactivated.
Now try to login and see if it’s working fine. And if it’s working fine then remove the “underscore” from all the plugins folders and
activate them one by one. And keep checking the working until it goes slow down.Forum: Fixing WordPress
In reply to: Hi, I get en error with this massage with the postsHello ,
It looks likes either this is related to permalink structure or It can be a theme issue. You can try to save again permalinks Settings->Permalinks here. If it not works then provide some more detail about your problem.
ThanksForum: Fixing WordPress
In reply to: How To Reduce The White SpaceHello andretiaay1
Problem for white space above the ‘Success Leaves Clues’ occurs because style .panel-row-style { padding: 40px !important; } is not active .
Please first clear cache then access url http://www.thisisallaboutyou.com/clues-for-you . Style .panel-row-style { padding: 40px !important; } will applied and problem regarding white space will not occur .
ThanksForum: Fixing WordPress
In reply to: Child pages not accessible from home pageHi morrisonkena,
Please can I have your site URL.
In the meanwhile try a little trick. I guess this will solve your problem on the fly.
Follow these instructions:
1.Access your dashboard.
2.Go to Settings->Permalinks
3. Just press save and your fortune is going to change hopefully.
Now access your site. Hope now you can access everything π
ThanksForum: Fixing WordPress
In reply to: Child pages not accessible from home pageHi morrisonkena,
Please can I have your site URL.
In the meanwhile try a little trick. I guess this will solve your problem on the fly.
Follow these instructions:
1.Access your dashboard.
2.Go to Settings->Permalinks
3. Just press save and your fortune is going to change hopefully.
Now access your site. Hope now you can access everything π
ThanksForum: Fixing WordPress
In reply to: Divi – menu doesn't work on mobileHello Alischenck
We are sorry but we could not help you regarding those issues which you had mentioned above because this is a commercial product and we do not have access to it.
Although If there would be something related to wordpress like menu not coming on nav-bar etc then we could provide you some code for the same.
Suggestion:
Please wait for the actual developer of this product to respond you(in their forum). If they not and you want this asap then please hire any developer so that they get access of your website and fix issues as you want.Thanks
CedCommerceHello,
Apology for the delay!
If you are not the same who contacted us on support@cedcommerce.com then this issue arises may be because you were using any plugin/theme which do Add-to-Cart via any ajax process over default Add-to-Cart of woocommerce on product detail page.
So please ask your developer to post following fields too in their ajax request:
1. Delivery date fields
2. Gift message
3. Delivery address
4. Additional cost.Thanks
CedCommerceHello sitesforchrist
Thanks for appreciation.
The thing is we are not arranging products 4 in a row or 5 in a row but we are using the same template as of woocommerce for displaying products on shop page.
But yeah your suggestion is also great and soon we will add this feature and launch next version.
Stay connected!
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Divi – menu doesn't work on mobileHi alischenck,
Please provide some more details regarding your problem and please do provide your sites link, so that I can see through the problem. I guess it must be some css issue.
Waiting to hear from you.
ThanksForum: Fixing WordPress
In reply to: How to turn off "post, author, email, comment"Hello,
Please describe clearly what is your problem and your site details like what theme your using?Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected '}'Hie heyyitzpat,
The issue might be in the file that is calling β themeOptions/functions.phpβ or in βrequire_once (OPTIONS_FRAMEWORK_URL . ‘options-framework.php’);β
So please kindle provide code of that do files also.
Is that theme is running before or from the time you installed it⦠it is producing the error.
Thanks