cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Disable Emoji in mobile browsersHello
you can checkout this nice tutorial for disabling emoji support http://www.wpbeginner.com/plugins/how-to-disable-emojis-in-wordpress-4-2/.
ThanksForum: Fixing WordPress
In reply to: Hide admin toolbar New menu for AuthorsHey davidfhannes,
Just paste the following code in your functions.php and your problem is solved:
add_action( 'admin_bar_menu', 'remove_new_menu', 999 ); function remove_new_menu( $wp_admin_bar ) { if ( is_user_logged_in() ) { $user = wp_get_current_user(); if ( !empty( $user ) ) { // check if currently logged-in user has role: author if ( in_array( 'author', (array) $user->roles ) ) { $wp_admin_bar->remove_node( 'new-content' ); } } } }Now see if the problem is solved.
Hope this is what you want.
Forum: Fixing WordPress
In reply to: Cant reset passwordhi kevinclements2012,
If you remember the name of your active theme. There is a quick solution to your problem.
Access your active theme’s functions.php
Insert below code inside the file.
wp_set_password( ’new_password’, 1 );Here first parameter is your new password and second parameter is the id of the user.
user_id 1 is for admin in most of the cases.After making changes. Access your site once.
Then access your dashboard. Hope you know your “username”. Now enter new password your set.
Hopefully you are able to access the dashboard.Forum: Fixing WordPress
In reply to: Site not showing new products once publishedHello keelan321
Hello it seems little weird that if you have done everything like other pages then why some pages are not showing in proper categories,here i suggest you to check ranges once more and make sure everything is right.If everything is right and problem persist then you should deactivate plugins one by one to make sure that the problem is not from any of your activated plugins.Forum: Fixing WordPress
In reply to: changing permalink for a custom postGood to hear that I am able to help you somehow.
If you need any further help in this, please ask.
If you get your solution, then please mark this query as resolved.
Happy to help you.
ThanksForum: Fixing WordPress
In reply to: How to exclude some content from posts to be used as "excerpt"Hi estevenin,
You want that you can place the excerpt within some code <content>your content</content> and only that content show on excerpt. But that logic is not good because for this you need to update all your blog post and if you want that simply write your excerpt content into post excerpt section from dashboard. But it is also not good idea but its better than adding excerpt content into a wrapper.
ThanksForum: Fixing WordPress
In reply to: Simple jQuery popup functionSorry there is a glitch in code. ‘;’ is missing after alert(“IT IS WORKING”)
Use this:<script> jQuery( document ).ready(function() { jQuery( ".body_link" ).click(function(event) { event.stopPropagation(); // Stop stuff happening event.preventDefault(); // Totally stop stuff happening alert(“IT IS WORKING”); jQuery(this).parents(".ooo_testimonial-block").find(".ooo_testimonial-full").addClass("show"); }); }); </script>Just please make a change before using the code. Remove the “ sign(quotes) inside alert and re-enter the “(quotes). Because there is some editor issue. Both signs are different.
Now try this. Hope you see the alert.
Looking forward to hear from you.Thanks
Forum: Fixing WordPress
In reply to: Issue with mysql db table, couldn't be fixed by WP DB toolhi newtonentropy,
Good to hear that I am able to help you somehow. Means your database error is fixed now. Right?
Just do one more step and you are good to go.
Access your dashboard. Go to settings->permalink.
Just press save there. Now access your site.
Hope now everything working fine. If it is so, mark this query as resolved.
Looking forward to hear from you.
ThanksForum: Fixing WordPress
In reply to: Not showing picture previewHello
please check that if you have installed PHP GD library because editing needs it. If it is installed then check your theme function.php and make sure it does’t contain any spaces in between php tags <?php ?>.
Thanks hope this will help you.Forum: Fixing WordPress
In reply to: tagHello
yeah plugin is good idea for changing in header or you can find header file in your activated theme folder. header.php
ThanksForum: Localhost Installs
In reply to: Issues when moving from local to siteHello pbraun,
please follow those simple steps to fix the broken url problem.
– login to your wp-admin go to setting >> general and click save to ensure that site url is corrected anywhere else also you need to go to the setting >> permalink to make sure all the post links working fine.
– run this query (you can do this by login to your phpmyadmin and select the database and run this from the query) “UPDATE wp_posts SET post_content = REPLACE(post_content, ‘localhost/test/’, ‘www.yoursite.com/’);”Hope this will help you.
Thanks.Forum: Fixing WordPress
In reply to: Simple jQuery popup functionTry to alert on clicking read More.
<script> jQuery( document ).ready(function() { jQuery( ".body_link" ).click(function(event) { event.stopPropagation(); // Stop stuff happening event.preventDefault(); // Totally stop stuff happening alert(“IT IS WORKING”) jQuery(this).parents(".ooo_testimonial-block").find(".ooo_testimonial-full").addClass("show"); }); }); </script>If this code alerts, means the code you have done is not working, as you want.
Thats all I can help you with.
To help you further I need access to your site as developer.
Try to fix code on your own. Or hire someone as “Denzel Chia” mentioned earlier.
ThanksForum: Fixing WordPress
In reply to: Issue with mysql db table, couldn't be fixed by WP DB toolHi newtonentropy,
I think I caught your issue.
Access your database . Go to wp_options table.
check site url and home. Hope this is set to your live site. Thats the glitch.
Change siturl and home to : http://localhost:8888/YOUR_WP_FOLDER_NAME
“localhost:8888” is used in MAC. For other systems it is “localhost”
Hope this will help you .
ThanksForum: Fixing WordPress
In reply to: Simple jQuery popup functionNow I got what you want.
But its difficult to test your code, as I don’t have access to your site as developer. So can’t try different things.
If your script is correct, then this critical fix can make your day.
Change your script to :<script> jQuery( document ).ready(function() { jQuery( ".body_link" ).click(function(event) { event.stopPropagation(); // Stop stuff happening event.preventDefault(); // Totally stop stuff happening jQuery(this).parents(".ooo_testimonial-block").find(".ooo_testimonial-full").addClass("show"); }); }); </script>Hope this time you make it 🙂
ThanksForum: Fixing WordPress
In reply to: not getting a box outside textOuthands,
Please go through entire comment above its the directory path which needs to to be corrected 😉