Wpdm Search Results

in Download Manager Free

Viewing 8 posts - 1 through 8 (of 8 total)
Sep 8, 2021 at 11:42 am
#161192
Participant
Sethu Raman
OP

Hi, hope you are fine ๐Ÿ˜Š
When i trys to search an wpdm file, results are showing like this, i want to change that to wpdm link page file results! Is there any way to replace generatepress search results to wpdm link page files? I also tried to customize search.php but not working & i don’t know about php ๐Ÿ˜… pls help me.

Thanks in advance!

The following search.php im currently using,

<?php
/**
 * The template for displaying Search Results pages.
 *
 * @package GeneratePress
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

get_header(); ?>

	<div id="primary" <?php generate_do_element_classes( 'content' ); ?  
		<main id="main" <?php generate_do_element_classes( 'main' ); ?  
			<?php
			/**
			 * generate_before_main_content hook.
			 *
			 * @since 0.1
			 */
			do_action( 'generate_before_main_content' );

			if ( generate_has_default_loop() ) {
				if ( have_posts() ) :
					?>

					<header class="page-header">
						<h1 class="page-title">
							<?php
							printf(
								/* translators: 1: Search query name */
								__( 'Search Results for: %s', 'generatepress' ),
								'<span>' . get_search_query() . '</span>'
							);
							?>
						</h1>
					</header>

					<?php
					while ( have_posts() ) :

						the_post();

						generate_do_template_part( 'search' );

					endwhile;

					/**
					 * generate_after_loop hook.
					 *
					 * @since 2.3
					 */
					do_action( 'generate_after_loop', 'search' );

				else :

					generate_do_template_part( 'none' );

				endif;
			}

			/**
			 * generate_after_main_content hook.
			 *
			 * @since 0.1
			 */
			do_action( 'generate_after_main_content' );
			?>
		</main>
	</div>

	<?php
	/**
	 * generate_after_primary_content_area hook.
	 *
	 * @since 2.0
	 */
	do_action( 'generate_after_primary_content_area' );

	generate_construct_sidebars();

	get_footer();
  • This topic was modified 4 years, 5 months ago by Sethu Raman.
Sep 8, 2021 at 12:57 pm
#161198
Spectator
Tanvir

Hello ,

Could you please share the related page/file/package URL with us?
If possible please also share the admin access of your website in a private reply.

It helps us to quickly figure out the issue and resolve it immediately.

Thank you

Sep 8, 2021 at 1:27 pm
#161204
Participant
Sethu Raman
OP
This reply has been marked as private.
Sep 8, 2021 at 1:48 pm
#161207
Spectator
Tanvir

Hello,

Unfortunately link template editing is not possible with free version of WPDM.
We have similar search functions with our directory addon.

WPDM Directory Add-on

See example here here I used the shortcode [wpdm_simple_search cols=1 template=โ€default-templateโ€ items_per_page=5]

Also you can check our special package with maximum addons:

WordPress Download Manager Special Pack

Thanks

Sep 8, 2021 at 5:43 pm
#161225
Spectator
Tanvir

Hello,

There is another shortcode with wpdm search results.
You can use that with the free version. I hope it will solve your problem.
https://www.wpdownloadmanager.com/doc/short-codes/wpdm_search_result-shows-search-form/

Sep 9, 2021 at 5:24 am
#161236
Participant
Sethu Raman
OP

Thanks ๐Ÿ™‚

Sep 11, 2021 at 11:55 am
#161386
Participant
Sethu Raman
OP

Hi, i added [wpdm_search_result template="link-template-audio"] into my generatepress theme hook “before_content” that’s working perfectly. But when i search an file, results are showing multiple times like this! is there any way to fix this problem?

Thanks!

  • This reply was modified 4 years, 5 months ago by Sethu Raman.
Sep 12, 2021 at 9:49 am
#161441
Spectator
Tanvir

Hello,
I think the shortcode is loading two times on that page.
Please make sure you are only using the shortcode once in a page or template.
Thanks

Viewing 8 posts - 1 through 8 (of 8 total)

The topic "Wpdm Search Results" is closed to new replies.