imcobarn
Forum Replies Created
-
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Search keywordI think that would be great feature, thank you for considering.
Is there a way to disable auto-suggest feature? simple or pro versions?
Also I think being able to create customized search form would be great feature.
With shortcode there is no control on how fields are displayed, by default some are 100% wide and in my case I’d like to have one line form with few fields inline inside the grid.
Maybe drag and drop form builder with grid columns?Is there feature like that in the pro version?
Thanks again.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] MapsThanks.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Undefined index: display_typeActually error was there before but turning WP_DEBUG to true displays error.
Just checked on older install.Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Templates overrideFigured it out.
For anyone else looking for the answer name the file single-properties.php
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Templates overrideI was able to get that by adding my divs directly to archive-properties.php file and uncommenting //do_action( ‘es_before_content’ )
How can I make single.php for property single page?
what should I name the file?Thanks.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Templates overrideNow I need to add my theme divs in the wrapper-start.php
I use Mesmerize theme with custom child theme.
I added customized wrapper-start.php to my theme /estatik/partials/ folder but it is not taking effect.
Am I doing that correctly?
Thanks.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Templates overridePerfect!
Thank you!
Forum: Plugins
In reply to: [Embed PDF Viewer] height attributesThank you very much, that works.
I copied code from the Github and code below is what I’m using.
I was trying to add “100%” width so it would scale on different screens but the function add “px” to the end of attribute so even if I add “500px” in new filter hook it would return 500pxpx on the page.
So in the hook dimensions need to be without px.Anyway to get around that?
add_filter( 'embed_pdf_viewer_pdf_attributes', function($attr) { $attr['height'] = "600"; $attr['width'] = "1000"; return $attr; });- This reply was modified 8 years ago by imcobarn.
Forum: Plugins
In reply to: [Advanced PDF Generator] how create template pdfSame issue here, it’s not clear what to put in the file?
Forum: Plugins
In reply to: [Contact Form 7] reuse recaptcha keys from cf7 integration settingsI was able to get the Sitekey with code below but can’t seem to get the Secret
How could I get the secret?
here is code to get sitekey:
$sitekeys = WPCF7::get_option( 'recaptcha'); $sitekeys = array_keys( $sitekeys ); $key = $sitekeys[0];Hi,
I’m using this great plugin on several site, it is great.
I recently installed Multisite/network/WPMS
I network enabled this plugin and set hide login settings but I get “Warning: Your login URL is unchanged because the Rename WP Login feature is not currently supported on WPMS.”How can I use the plugin on Multisite setup?
Activate individually on sub-blogs?
Thank you.
Great, looking forward to it.
Thank you!
Figured it out.
In this case url is mysite.com/”myloginstring” , skipping subdirectory in the url
That’s the solution in case someone else runs into this problem.Marking resolved.
Thanks.
- This reply was modified 8 years, 6 months ago by imcobarn.
Forum: Plugins
In reply to: [WP Job Manager] Change to use different loopI don’t think wp job manager uses “standard” loop from your theme file, looks like it’s done with a shortcode added to the page, [jobs] for example, if I’m not wrong.
Code is in wp-job-manager\includes\class-wp-job-manager-shortcodes.php which calls then wp-job manager templates to display either list or single job.To edit how single job is displayed override plugin templates in your theme and also you can create outer template to match you theme by creating custom post type templates, https://developer.wordpress.org/themes/template-files-section/custom-post-type-template-files/
Hope that helps.
Forum: Plugins
In reply to: [WP Job Manager] Post a job – pre-populate company detailsHere is what I’m using to remove fields.
Inside the function:unset( $fields['company']['company_logo'] ); return $fields;Of course change “company_logo” with field name you need to remove.
Hope that helps.I’ll try code you sent
I created custom function to use different default image and then call it in templates but your solution I think is better.