frytec
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate WordPress - Google Language Translator] Replace flags by labels?Hello please tell me how can i use that shortcode with a flag instead of a label?
Forum: Plugins
In reply to: [I Recommend This] How to modify the shortcode [dot_recommended_posts] ?Hello, Harish.
Yes, if i could use my theme archive page style on this would be great.. Any idea on how can i achieve this?
Check you htaccess file and you will see that the plugin create a section # BEGIN W3TC Browser Cache but in my case it didn’t create this section in a new line, so the htaccess got messed.. Make sure # BEGIN W3TC Browser Cache is in a new line…
Forum: Plugins
In reply to: [Wise Chat] reset usersI changed session.cookie_lifetime and session.gc_maxlifetime to 1 year, cleared users table and browser cookies.
Looks like the cookie is working now 🙂
Do you think this can affect my server performance in any way?
Forum: Plugins
In reply to: [Wise Chat] No Lightbox for images posted on chat.I don’t know why but the Lightbox that came with my theme didn’t work in the chat.. But i disabled it and installed another Lightbox plugin and is it working fine now! Thanks for your time and for this great plugin. Solved!
Forum: Plugins
In reply to: [Wise Chat] No Lightbox for images posted on chat.i think this may be some kid of jquery conflict. Is there a way to use this custom viewer with posted images instead of Lightbox? That custom viewer will work better for me because is more simple and clean.
Forum: Plugins
In reply to: [Wise Chat] reset usersHow can we workaround this name issue?
Forum: Plugins
In reply to: [Download Manager] Exclude Download Pages from WP search resultsI haven’t tried the Author suggestion. I ended up installing a plugin called Search Exclude. Try it.
Forum: Plugins
In reply to: [WP Job Manager] How to edit the account-sign-in button?Well, i actually found it..
Keep it for the records:
/wp-content/plugins/wp-job-manager/templates/account-signin.php
Forum: Plugins
In reply to: [WP Job Manager] Replace JOB in URL for something elsehey chandersbs, to remove company-name and job-region from job-slug try using this (it should use only the job-title as job-slug):
add_filter( 'submit_job_form_save_job_data', 'custom_submit_job_form_save_job_data', 10, 5 ); function custom_submit_job_form_save_job_data( $data, $post_title, $post_content, $status, $values ) { $job_slug = array(); $job_slug[] = $post_title; $data['post_name'] = implode( '-', $job_slug ); return $data; }
Forum: Plugins
In reply to: [WP Job Manager] How to enable comments on job posting page.me too… can someone pls help us…
Forum: Plugins
In reply to: [WP Job Manager] Replace JOB in URL for something elseThis is VERY good, man… Thanks for sharing your wisdom… I really appreciate it… hopefully someone will help us on how to remove company and location from the job url…
Forum: Plugins
In reply to: [WP Job Manager] Replace JOB in URL for something elseor even better…
like this would be great:
mysite.com/vaga/job-title
(only job title in url, no company name).
Forum: Plugins
In reply to: [WP Job Manager] Enable comments in job postingsIts not working for me…
I cant enable comments on single job page. 🙁
My theme is Jobify, any idea?
Forum: Plugins
In reply to: [Popups - WordPress Popup] Cant change opacity. Its always set as 1If i add this CSS:
.spu-bg { opacity: 0.5 !important; }
I get the desired opacity, but it makes my page unclickable when the popup is gone…
The opacity still 0.5 when we close the popup, looking like there is a layer with the 0.5 opacity over the entire page.
Any workaround i could use?
Maybe adding !important on the script that manage this option instead of adding it on the CSS itself?
[ No bumping please. ]