Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2348617 bytes) in /home4/xxx/public_html/wp-includes/plugin.php on line xxx WordPress Memory Exhausted Error – Increase…
Continue ReadingBy default, the woocommerce product by button shows “Add to cart“, if you want to change the text with other any text. You can use…
Continue ReadingTo Remove the wordpress admin bar from the frontend you can use this code in your function file add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator')…
Continue ReadingTo add custom CSS in the wordpress admin area, you can use this function, in your function file function my_custom_css() { echo '<style> .post-type-product #ovaem_sectionid…
Continue ReadingTo add custom meta field in the product single page and save the field data then get value, Need to add this following code You…
Continue ReadingIf you want to add any custom field in your registration page, then you need to follow the following four steps: First, need to add…
Continue ReadingIt is a really wrong way to use $_SERVER. You can alternatively use the $wp global to get the current URL – it’s the same thing in…
Continue Reading