cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Foreground coloursIf you are asking about colour change of posts listed on the link given then you can go to style.css line number 510 where you can find
.recent-posts .post-content { background-color: #181818 !important; min-height: 157px; }you can change background-color accordingly
Forum: Fixing WordPress
In reply to: How to display taxonomy terms as meta itempropHi moxymore,
You are using the_terms() which directly renders the result, and from your code it seems like you don’t want to do that. You first want to fetch terms in a variable and then render it.
Below links and solve your purpose:
https://developer.wordpress.org/reference/functions/get_the_terms/
https://codex.wordpress.org/Function_Reference/wp_get_post_terms
one more suggestion, be sure whats the return type of the function. echo a Array variable might confuse you. One of the function that proves to very useful in that scenario var_dump() suits well.
ThanksForum: Fixing WordPress
In reply to: Custom Sidebar Widget – Can't DeleteHi askmich,
This seems to the problem of the plugin you are using.
I recommend you to contact plugin author or support regarding that, as the widgets are providing option to delete. The scrolling issue however can be fixed with some css, but for that , the person who will fix your issue, has to access your admin panel, to peep into the problem.
Thanksyou are getting these error because in your database these table does not created,And these are important for wordpress. So please try to reinstall wordpress properly. you can check this link for reference https://codex.wordpress.org/Installing_WordPress
Hope this will help you.Forum: Fixing WordPress
In reply to: How do i allow others to post comments?Go to settings/discussion -> Default article settings and check “Allow people to post comments on new articles” then uncheck the option “Users must be registered and logged in to comment” in “Other comment settings” section.Hope it will help you.
Forum: Fixing WordPress
In reply to: how to create a "save button" to save custom-metaHello Masoud, its our pleasure to help you.
You are welcome
Forum: Fixing WordPress
In reply to: Error message with PHPHello there ,
Looks like you are running older version of php (5.2.17) that is why you are getting this error please update your php version to run this plugin. For updating your php version you can contact to your website host about this.Thanks Hope this will help you.
Forum: Fixing WordPress
In reply to: Image SliderHello alyssakipper,
If you’ve downloaded the plugin in your computer, then just extract that and paste the extracted file in your wordpress site’s
“wp-content > plugins” folder through the ftp. And visit your wordpress site’s admin panel(dashboard) and click on “Plugins” navigated in the sidebar.
You’ll see your plugin is listed over there now just click on the “Activate” to activate the plugin. That’s all, now the plugin is activated.
Or you can download and install it by wordpress admin panel also. For that visit your wordpress admin panel and Click on “Plugins > Add New”.
Now enter the desired plugin name in the search field and hit “enter” key. You’ll see the list of plugins, just click on “Install Now” and wait
for a while. And then the activation link will be appeared, just click on “Activate” to activate the plugin.Hope this is what you were asking.
Forum: Plugins
In reply to: [WP Advanced PDF] Long Empty PDFHello jejones8,
Thanks for using this plugin, and its unfortunate that you have received blank pages on exported PDF.
Please tell us whether you content and title are there on the exported PDF?
Also with this information we are not too sure to provide actual solution, so please contact us on support@cedcommerce.com with your login details so that it could be rectified asap
Thanks
CedCommerceForum: Plugins
In reply to: [WooCommerce] Changing all words in the review tab on product pageAlong with the code you uses for the renaming of the tab, you need to change the callback function of that tab, you can do the same using this bunch of code,
add_filter( 'woocommerce_product_tabs', 'my_custom_description_tab', 98 ); function my_custom_description_tab( $tabs ) { $tabs['reviews']['callback'] = 'my_custom_description_tab_content'; return $tabs; } function my_custom_description_tab_content() { echo '<h2>Custom Description</h2>'; echo '<p>Here\'s a custom description</p>'; }Thanks.
Forum: Themes and Templates
In reply to: Woocommerce list displayyou need to modify you theme and you can show the images or content in any size or anywhere, you can check that you shop “http://wheelsupplyit.byethost5.com/shop/” listing products exactly how you asked here, for any kind of modification in this listing you need to override the woocommerce template hierarchy.
hope this will help you.
thanks.
Forum: Fixing WordPress
In reply to: Images not working anymore after migrationHi georgecj,
The idea behind the chinese is that for image we used image tag like :
<img src=”image url” alt=”image_name”>
if the image is not present at the given image url then alt value is show in place of image and in your case the image url is not correct that’s why alt text is shown that is chinese words that’s why Chinese is shown in place of image.
I have tried my best to explain the idea behind the Chinese text.
ThanksForum: Fixing WordPress
In reply to: Images not working anymore after migrationHi georgecj,
For migrating any site you have to move your whole wordpress package to new location as well you need to migrate the database for updating the new location and url save in the database then export the database and import it. There are many plugin which is used for database migration. I suggest you to use WP MIGRATE DB plugin for migrating database.
ThanksForum: Fixing WordPress
In reply to: how to create a "save button" to save custom-metaHi Masoud,
Can you give me url from where you want to add user meta details.Forum: Fixing WordPress
In reply to: how to create a "save button" to save custom-metaHi Masoud,
Do you want it in user admin section?