cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How modify a clickable category to a non-clickable one, instead?Hello Nuriaruiz,
please add this style in style.css file.
.menu-item.menu-item-type-taxonomy {
cursor: default;
pointer-events: none;
}Forum: Fixing WordPress
In reply to: How to create a tag list index?Hey Ruriko,
As I’m checking your code is working fine, and fetching only the tags of published post not for scheduled post. But if this is not working for you, you can use the following :
<?php $tags = get_tags(); $html = '<ul class="your_class">'; foreach ( $tags as $tag ) { $tag_link = get_tag_link( $tag->term_id ); $html .= "<li><a href='{$tag_link}' title='{$tag->name} Tag' class='{$tag->slug}'>"; $html .= "{$tag->name}</a></li>"; } $html .= '</ul>'; echo $html; ?>Possibly this may help you !
Try removing the padding by inheriting the parents like below:
#page .content .pad { padding: 0; }Apply the above css code either in your child theme or in parent theme’s style.css and see if it’s working if not then use the following one:
#page .content .pad { padding: 0px !important; }The padding of the center content will be removed and the left and right whitespace of the content section will be removed.
Hope this is what you wantForum: Fixing WordPress
In reply to: Unattached MediaHello pasqualerose,
Upload images directly in Media > Add New, and assign to post or page then that images will show under unattached option in menu tab in the media library.
Now open post or page and set featured image using “Set featured image” link and add image using “Add Media” button . Now that image will show in Media Library but not in unattached option in menu tab in the media library.Forum: Plugins
In reply to: [Wholesale Market] Prices display, traduction and promo codeHi Nadiiine,
Apology for late reply and thanks for appreciating Wholesale-Market plugin.
For issue#1: This issue may be due to any other plugin/theme that were not using woocommerce default section of shop/single page, but can you please provide us your site link, so we can see through the problem more deeply.
For issue#2: we encountered some issue with WPML. We are working on it and hopefully we soon make it completely compatible with WPML.
For issue#3: Please tell us whether you are using woocommerce coupon system or some other plugin for that. Also explain your coupon system more clearly.
Kindly please contact us on support@cedcommerce.com so that we can resolve your query fast.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Static page removalHi kushtian,
Your site is running perfectly fine. You can check this: http://applyde.com/post/
The problem must be you have set static page as your front-page.
Please share a screenshot of your dashboard: setting->reading
ThanksForum: Fixing WordPress
In reply to: How to position titles of pagesHello borismoggy,
Can you provide your site url please, or any screenshot so that I can check the issue and possibly I can help you.
Forum: Fixing WordPress
In reply to: Adding javascript code to a specific wordpress pageAs you asked here for enqueue scripts on specific page this is the way you can, also if you wants to add common script on all pages on front end you can simply use this code in your activated theme’s functions.php
function enqueue_common_scripts() { wp_enqueue_script( 'my-scripts', get_stylesheet_directory_uri() . '/my-script.js', array( 'jquery' ), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'enqueue_common_scripts' );but if you’re looking for other user-friendly option then please mark this as resolved, and generate a new thread mentioning about that issue.
Thanks.
Forum: Fixing WordPress
In reply to: Adding javascript code to a specific wordpress pageHello,
You can easily enqueue your scripts file on specific page by checking the page like thisfunction enqueue_files() { if ( is_page( 'your-page' ) ) { // enqueue specific page script files here } else { // enqueue common scripts here } } add_action( 'wp_enqueue_scripts', 'enqueue_files' );the similar question is also answered here.
Hope this will help you.
Thanks.
Forum: Fixing WordPress
In reply to: Home button does not showTheme location is not present that’s not a big deal, possibly your site doesn’t have options of multiple theme locations. I think you should contact your theme creator because for checking the issue.
Forum: Fixing WordPress
In reply to: how to increase upload file memory size with ubuntu plesk vps serverHello himanshu_ag
Sometimes directory php.ini is not supported by server, so make sure it supports in your server. If it doesn’t you need to make changes in loaded php.ini file which you can check using phpinfo();
Hope it helps you.
Forum: Fixing WordPress
In reply to: Home button does not showGo to http://yoursite.com/wp-admin/post-new.php?post_type=page and create a new page with name Home and publish the page like:
My portfolio
About me
DisclaimerNow visit http://yoursite.com/wp-admin/nav-menus.php and you’ll see the newly created page and under the Pages tab. check the checkbox of Home and click on “Add to Menu” button and you’ll see this is added under the “Menu Structure”. just below that “Menu Settings” is visible there must be at least two options:
Auto add pages
Automatically add new top-level pages to this menuTheme locations
Primary Navigation (Currently set to: Menu 1)Check the Theme Location and hit the Save Menu button.
If you’re unable to see these things then at the url http://yoursite.com/wp-admin/nav-menus.php see at the top below the admin bar there is a button named Screen Options click on that and see the options there and check all of them. And see now if there some options available like I said.Forum: Fixing WordPress
In reply to: How to Replace Pipe With Minus IN Page Titles?Hello grahambg,
try using following code in function.php:add_filter ('document_title_separator', 'set_document_title_seperator', 100 ); function set_document_title_seperator ($sep) { return '-'; }Hope this will help you.
ThanksForum: Networking WordPress
In reply to: Subdomains not workingHello patelnagarnews,
What happens if you go to site1.domainname.com?
That should redirect you to the registration page on domainname.com
If not, then it’s your wildcard subdomains not being generated correctly.
ThanksForum: Reviews
In reply to: [Product Auto Share] GREAT ! – BON !Hello bgtbbox,
We have updated new version of this plugin which now lets share your product on FB pages also.
Thanks
CedCommerce