ashwinichaskar
Forum Replies Created
-
Forum: Plugins
In reply to: [Email Before Download] Sent email doesn't contain a download linkYes the form is fine. I figured out that if we click on the link it opens up in a new tab and just shows download.php.
But if you right click on the link and save the link as, then I am able to download the pdf. It is little confusing for the user. He should be able to click the link and straight away the download should start.
Any fixes around this?
Forum: Plugins
In reply to: [Email Before Download] Sent email doesn't contain a download linkHi,
Need help urgently with the plugin. I have set up the Email Before Download Plugin. The Contact form works fine. But the link does not download. It just opens in a new tab with download.php.
The link in email does the same thing.
How to fix it?
Regards
Forum: Themes and Templates
In reply to: [Sydney] Change the Menu button for mobile to a different colorHi jhep,
the .site-header class in mobile is #ffffff and the menu button is also #ffffff hence you cannot see it. Change the color of the site header.
Forum: Plugins
In reply to: Remove Posted By from searchHi Joey,
Thanks for the quick reply. I did copy the search.php and searchpage.php to the child theme. I found this code in the search.php as you mentioned:
<?php
/*
Template to filter categories
*/
get_header(); ?>
<!–Blog section–>
<section class=”blog”>
<div class=”container”>
<div class=”row”>
<div class=”col-md-8 post-left”>
<div class=”page-heading-minor”>
<h3><?php printf( __( ‘Search Results for: <span class=”color”>%s</span>’, ‘theme name’ ), get_search_query() ); ?></h3>
</div>
<?php get_template_part( ‘content’, ‘search’ ); ?>
<?php get_template_part( ‘pagination’ ); ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
</section>
<?php get_footer(); ?>What exactly I need to edit in this file to remove the Posted By in the search results?
Thanks!