Chintesh Prajapati
Forum Replies Created
-
Forum: Reviews
In reply to: [Shopper Approved] well no it doesnt work for freeHi @irishblake
Just we need to things 2 thing from you shopper approved account
1. Site key
2. and TokenPlease let me know if anything.
Forum: Networking WordPress
In reply to: Setup Multi site on existing siteYes i want to replace original site
Forum: Networking WordPress
In reply to: New domains don’t map automaticallyHello @redchili
You have to make Host entry of your new mapped domain.
If you have >= 4.5 WordPress Version No need to add plugin (You can Map domain Without plugin).
For Domain Mapping without plugin
=================================
In the network admin dashboard, click on Sites to show the listing of all the subsites, and then click on edit for the subsite you want to map to. In our example, this is subsite1.mynetwork.com.In the Site Address (URL) field, enter the full URL to the domain name you’re mapping – https://mappeddomain.org – and click save.
Thanks.
- This reply was modified 5 years, 1 month ago by Chintesh Prajapati.
Hi @ainab
Go to additional-classes-list.php file
Then append ‘wp-editor’ value in dependency parameter array which is in wp_enquesctipt…
Hi @ainab ,
I have created solution on my blog, Please visit below link
https://cpblog.ml/additional-class-list/
I have created one plugin over there and you have to follow some steps which are mentioned over there.
Hope it can helps you.
Thanks
Hi @ainab ,
Please https://jeffreycarandang.com/extending-gutenberg-core-blocks-with-custom-attributes-and-controls/ this url
const { InspectorAdvancedControls } = wp.editor;
by using this component you can add text or any element under the Advanced section.
Thanks.
Forum: Fixing WordPress
In reply to: Can not access my admin pageHi @bigjeff53
Have you use this code in your site ?
I am little bit confuse with your issue, Can you please explain ?Thanks.
Forum: Fixing WordPress
In reply to: Can not access my admin pageHi @bigjeff53 ,
Please change WP_DEBUG from false to true from wp-config.php file, May be you can see the errors.
Thanks.
Forum: Plugins
In reply to: [Shopper Approved] Big Ugly Error upon InstallForum: Fixing WordPress
In reply to: Rest Api IssueHi @jakept
Thanks for the quick response,
For example I am fire login API then all registered routs are fire….like logout API or notification API.
Forum: Plugins
In reply to: [Site Reviews] Show 1 rating extra in total rating countIt Works..!
Thanks for the support.
- This reply was modified 5 years, 10 months ago by Chintesh Prajapati.
- This reply was modified 5 years, 10 months ago by Chintesh Prajapati.
Forum: Developing with WordPress
In reply to: Taxonomy Template not WorkingHi, @smanimania
Can you Please create template with name of “taxonomy-lista_comuni_appartamenti.php“.
Thanks.
- This reply was modified 6 years, 1 month ago by Chintesh Prajapati.
Forum: Developing with WordPress
In reply to: get image caption use in page templateHi, @ratamatcat
Please check below URLs, It’s help you.
https://developer.www.ads-software.com/reference/functions/get_the_post_thumbnail_caption/
https://developer.www.ads-software.com/reference/functions/wp_get_attachment_caption/
Thanks.
Forum: Developing with WordPress
In reply to: get_post_meta not working on custom-function pageHi, @jklyn
correct @navnitviradiya13,
Otherwise, you try with below code.I hope it may help you.
$term = get_queried_object(); $tax_object = get_taxonomy($term->taxonomy); $post_type_array = $tax_object->object_type; $post_type = $post_type_array[0]; $posts = get_posts(array( 'post_type' => $post_type, 'taxonomy' => $term->taxonomy, 'term' => $term->slug )); foreach ($posts as $post) { //echo '<pre>'; print_r($post); $id = $post->ID; $custom_meta_writer = get_post_meta($id, 'writer_meta_key', false); $writer = $custom_meta_writer['writer']; echo $post->post_title; echo $writer; }
Thanks.
- This reply was modified 6 years, 2 months ago by Chintesh Prajapati.
Great…..!