Would like to Edit some Core plugin PHP
This topic contains 8 replies, has 3 voices, and was last updated by Alex Rollin 6 years, 5 months ago.
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket-
AuthorPosts
-
October 4, 2018 at 11:13 pm #448788
Hi i made an edit @ some core plugin php file such as
listing-listview.php
Example
<?php
/**
* Called before the post excerpt on the listings view template.
*
* @since 1.0.0
* @param object $post The post object.
* @see ‘geodir_after_listing_post_excerpt’
*/
do_action(‘geodir_before_listing_post_excerpt’, $post); ?>
<?php echo geodir_show_listing_info(‘listing’); ?>I start make comment from this
<!– <div class=”geodir-entry-content”>
<?php
/**
* Filter to hide the listing excerpt
*
* @since 1.5.3
* @param bool $display Display the excerpt or not. Default true.
* @param string $view The view type, default ‘listview’.
* @param object $post The post object.
*/
$show_listing_excerpt = apply_filters(‘geodir_show_listing_post_excerpt’, true, ‘listview’, $post);
if ($show_listing_excerpt) {
if ( isset( $character_count ) && ( $character_count || $character_count == ‘0’ ) ) {
$content_out = geodir_max_excerpt( $character_count );
} else {
$content_out = get_the_excerpt();
}
if ( ! empty( $content_out ) ) {
echo “<p>” . $content_out . “</p>”;
}
}
?></div> –> my End commentINTO these :
<div class=”geodir-entry-content”> <?php $check_button= $post->geodir_Button_enable; if($check_button){ echo “<span class=’glf-button’ data-glf-cuid=”,$post->geodir_CUID,” data-glf-ruid=”,$post->geodir_RUID,” data-glf-auto-open=’false’>ORDER NOW</span><script src=’https://www.foodbooking.com/widget/js/ewm2.js’ defer async ></script>”; } ?></div>
by edit core php file directly it make me can’t update my geodirectory plugin
Would you please suggest me another to edit php file but not in core file directly ?
October 5, 2018 at 6:15 am #448813Hi Mongkol,
Thanks for your post. Could you tell us a little bit more about what are you trying to achieve there? Maybe we could do what you needed there using some filters.
Thanks!
October 5, 2018 at 2:03 pm #448836October 5, 2018 at 5:57 pm #448876on the search result or Listing place in each shop there ‘s shop’s description i would like to delete it and put order now button instead of that.
October 5, 2018 at 6:51 pm #448885Hi mongkol,
You can try creating a “Custom Field URL” as explained here https://wpgeodirectory.com/docs/core-place-settings/#url and display it on the listings using this method https://wpgeodirectory.com/docs/core-place-settings/#show . Could you give it a try?
Thanks!
October 10, 2018 at 9:57 pm #449272alex rollin and Kor
I Try custom @ templates so far now it’s work!
ThxOctober 11, 2018 at 6:33 am #449297Excellent 🙂
October 17, 2018 at 11:16 pm #450213Hi it’s me again I have some question About tip your guys show me before about
https://wpgeodirectory.com/docs/customizing-geodirectory-templates/Are this method limit only geodirectory-Templates file?
i mean “Can i create directory ‘Geodirectory’ in child-theme and copy any file in geodirectory then modify it then put it in folder @ child-theme and it work ?”October 18, 2018 at 9:43 am #450269I am not sure I understand the question. That sounds like what is described on the linked page.
Navigate to your child theme.
Create a folder in your active child theme folder called geodirectory.
Find the template you want to customize.
And copy that template to the geodirectory folder in your active child theme.https://wpgeodirectory.com/docs/customizing-geodirectory-templates/
-
AuthorPosts
We have moved to a support ticketing system and our forums are now closed.
Open Support Ticket