dodmoh
Forum Replies Created
-
please read the topic I started as it include a clear screenshot and I described everything in details again :
the Site is in LIVE MODE and I was testing on checkout page while using browser NOT LOGGED IN and stripe plugin was on SANDBOX MODE I suddenly seen the stripe logo flowting on the page and I clicked and I could see clearly the CLIENT ID for Stripe Account which I included at the start of the topic https://imgur.com/hpodJJa
I confirm the site site is on LIVE mode, and Stripe Payment Method is correctly confirgured
a screenshot https://imgur.com/CImUq9p
Forum: Fixing WordPress
In reply to: Increase site title margin on mobile sitea custom solution like this would work just fine :
@media screen and (min-width:300px and max-width:1024px )
.site-header-wrapper{
padding: 36px;
}
}or just add
.site-header-wrapper{
padding: 36px;
}Forum: Fixing WordPress
In reply to: can’t access wp-admin after changing urlif you upload from localhost to yourdomain.com you should change all urls
open wp-config.php and add this at the top
define(‘WP_HOME’,’http://example.com’);
define(‘WP_SITEURL’,’http://example.com’);Forum: Fixing WordPress
In reply to: how to remove bullet points from sidebar widgetif you want the categories to be shifted to the left you should apply css rule to the ul tag like this :
.widget-box ul {
padding: 0px;
}Forum: Fixing WordPress
In reply to: create a profile page for users?what i think you should do :
-allow user to login and limit the access to wp-admin
-in theme you can use author.php and check for role
what you will use :
*user role editor to create a new role and create custom capabilities
*add_filter on authentication to wp-admin
*and redirect the logged in user to login page that you have to createall the above can be done using plugin for membership like members
Forum: Fixing WordPress
In reply to: create a profile page for users?this can be done with custom post companies and taxonomies
it will be like this
create taxonomy with name companies and custom post type company (singular)
you should use a plugin to make it easy to create them one i recommend is Custom Post Type UI .Forum: Fixing WordPress
In reply to: how to remove bullet points from sidebar widgetits very simple to do that in add this code in style tag <style></style>
.widget-box li {
list-style: none;}
- This reply was modified 9 years, 2 months ago by dodmoh.
Forum: Plugins
In reply to: [CMB2] CMB2 file_list issue ??i didn’t think of it is clear now thank you very much for hint .