Forum Replies Created
-
AuthorPosts
-
Hi,
You can add these lines to custom CSS:
.single .noo-page-heading .page-title {
font-size: 45px;
line-height: 1em;
}
Best regards,
tb.
Hi,
Please send me admin account (Set as private reply).
I will help you check.
Best regards,
tb.
Hi,
Please send me admin account (Set as private reply)
I will help you check.
Best regards,
tb.
Hi,
1. The website will have 2 types of user: Employer and Candidate.
You can use this code snippet:
if( Noo_Member::is_employer() ) { // check User is employer <=> Job Package
$package = jm_get_package_info(); // check current user
$order_status = get_user_meta($user_id,'_order_status',true); // check payment status
} elseif( Noo_Member::is_candidate() ) { // check User is candidate<=> Resume Package
$package = jm_get_resume_posting_info(); // check current user
$order_status = get_user_meta($user_id,'_order_resume_status',true); // check payment status
}
2. You go to the noo_company.php (/wp-content/themes/noo-jobmonster/framework/admin/) and find to the function "count_jobs".
Best regards,
tb.
5 years, 8 months ago in reply to: Add new Job Type Parent and Sub Category frontend display Issue #1080606Hi,
With the current release we focus on the Job Filter widget and Job map functionality.
The above issue is not yet included in this release. We will update it in the next release (in November).
Best regards,
tb.
Hi,
1. The issue has been solved!.
2,3. You can add these lines to custom CSS:
.navbar-profile .navbar-nav li > a {
line-height: 1em;
color: var(--text-color)!important;
text-align: left;
}
@media (max-width: 991px){.job-action {
z-index: 9990;
}
}
Best regards,
tb.
Hi,
I think you will have to customize the code for this issue.
You can use the Child theme and customize for the following files:
- user-menu-collapsed.php (/wp-content/themes/noo-jobmonster/layouts/)
- top-bar.php (/wp-content/themes/noo-jobmonster/layouts/)
- user-menu.php (/wp-content/themes/noo-jobmonster/layouts/)
Best regards,
tb.
Hi,
You go to the initialize-theme.php file (/wp-content/themes/jobica/includes/) and find to this lines:
add_image_size('jbc-portfolio-image', 252, 252, true);
You replace "true" => "false"
add_image_size('jbc-portfolio-image', 252, 252, false);
Later you install plugin Regenerate Thumbnails and regenerate all image.
=> You go to your site and check again.
Best regards,
tb.
Hi,
You can refer this post:
https://localise.biz/wordpress/plugin/beginners
- Link the .pot file: wp-content/themes/fitsica/languages/fitsica.pot
Best regards,
tb.
Hi,
You can copy the content of the functions.php file to your another website.
Best regards,
tb.
Hi,
I have been disabled the lines above.
Please activate plugin Event Tickets Plus and check again.
Best regards,
tb.
Hi,
"comment the lines?" == disable these code lines.
You add the // sign before each line of code as I did in the image below (red circled area)
Best regards,
tb.
Hi,
- Manage Follow: You go to the heading.php file (/noo-jobmonster/layouts/)
You should use the Child theme for this updating, because it will be lost when you update Jobmonster.
- Unfollow: You add this function to the functions.php of Child Theme. Later you can change the text that you want.
function noo_follow_status( $company_id, $user_id ) {
if ( empty( $user_id ) || empty( $company_id ) ) {
return esc_html__( 'Follow', 'noo' );
}
$list_company_follow = get_user_meta( $user_id, 'list_company_follow', true );
if ( empty( $list_company_follow ) || ! is_array( $list_company_follow ) ) {
$list_company_follow = array();
}
if ( in_array( $company_id, $list_company_follow ) ) {
return esc_html__( 'UnFollow', 'noo' );
}
return esc_html__( 'Follow', 'noo' );
}
Best regards,
tb.
Hi,
You need to go to the functions.php file of parent theme and comment the lines above.
You can upload the plugin to Google Driver and share link with me.
Best regards,
tb.
Hi,
Sorry, the Before After plugin does not currently support grid layout.
Currently, you can use many shortcodes at the same time. Each shortcode will use 1 pair of image (Before - After).
Best regards,
tb
Hi,
You go to the functions.php file (wp-content/themes/noo-ivent/) and comment these lines.
I don't currently availiable the Event Ticket Plus plugin, you can send me this plugin via email. I will check this issue. ([email protected])
Best regards,
tb.
Hi,
With the Waring from the RevSlider:
I think you are using PHP version 7.3.x:
Please update the RevSlider plugin to the latest version.
- Error from Event Ticket plugin.
HP Fatal error: Uncaught RuntimeException: Error while making 'tickets-plus.commerce.woo': 'tickets-plus.commerce.woo' is not a bound alias or an existing class
It seems that other users have the same problem on the old version.
https://wordpress.org/support/topic/fatal-error-introduced-in-4-10-0-1/
Have you updated to the latest version for these plugins?
(Note: You should backup before update these plugins)
You can give me your login information here.
Best regards,
tb.
Hi,
That's right, because the class will show based on the time you set for it.
Best regards,
tb.
Hi,
For this issue, it's about the capacity of server. Could you try the solution in the following links?
http://stackoverflow.com/questions/8062496/how-to-change-max-allowed-packet-size
Best regards,
tb.
Hi,
I will update this code into NooPropertyFeaturedWidget.
Currently, you can use your update code.
Best regards,
tb.
Hi,
I checked and your search page still normal works.
You can remove the cache or try again with browser anonymous.
Best regards,
tb.
Hi,
You will always be up to date with the latest version from us.
Best regards,
tb.
Hi,
I helped you translate the text above.
Please reload your site and check again.
Best regards,
tb.
Hi,
You go to the manage-job_applied.php (/themes/noo-jobmonster/layouts/dashboard/) and edit the text above.
Best regards,
tb.
Hi,
It seems that the job alert is activated based on the Job alert ID.
but because the account has been deleted, it's not possible to check the ID of Job alert.
You can export a database file your site.
I will check this issue.
Best regards,
tb.
-
AuthorPosts