Plugin Directory

Changeset 3467660


Ignore:
Timestamp:
02/23/2026 12:02:59 PM (5 weeks ago)
Author:
weblizar
Message:

update

Location:
jobs-portal
Files:
85 added
4 edited

Legend:

Unmodified
Added
Removed
  • jobs-portal/trunk/includes/Weblizar_Helper.php

    r2781322 r3467660  
    200200        $general_account_page_id = self::general_account_page_id();
    201201
    202         return $general_account_page_id ? get_permalink( $general_account_page_id ) : home_url();
     202        if ( $general_account_page_id ) {
     203            $page = get_post( $general_account_page_id );
     204            if ( $page && $page->post_status === 'publish' ) {
     205                return get_permalink( $general_account_page_id );
     206            }
     207        }
     208
     209        // Fallback to checking by slug if settings ID is invalid or not set
     210        $fallback_page = get_page_by_path( 'account' );
     211        if ( $fallback_page && $fallback_page->post_status === 'publish' ) {
     212            return get_permalink( $fallback_page->ID );
     213        }
     214
     215        return home_url();
    203216    }
    204217}
  • jobs-portal/trunk/jobs-portal.php

    r3418025 r3467660  
    33 * Plugin Name: Jobs Portal - Job & Career Manager
    44 * Description: A powerful and robust plugin to create and manage job portal on your WordPress website where recruiter can post job requirements. Also, applicants can filter jobs and apply to a job in an easy and elegant way.
    5  * Version: 4.1
     5 * Version: 4.2
    66 * Author: Weblizar
    77 * Author URI: https://weblizar.com/
  • jobs-portal/trunk/public/inc/templates/single-job.php

    r3285573 r3467660  
    1212}
    1313?>
    14 <div class="wrap weblizar">
    15     <div class="container mt-4 mb-3">
    16         <section class="weblizar-job">
     14<div class="container wrap weblizar">
     15        <div class="row justify-content-md-center mt-4">
     16            <div class="col-md-12">
     17                <section class="weblizar-job">
    1718            <?php
    1819            while ( have_posts() ) : the_post();
     
    206207            ?>
    207208        </section>
     209            </div>
     210        </div>
    208211    </div>
    209212</div>
  • jobs-portal/trunk/readme.txt

    r3418025 r3467660  
    44Tags: Job Portal, Job Listing, Job Manager, Career Manager, Job Posting
    55Requires at least: 7.4
    6 Tested up to: 6.9
    7 Stable tag: 4.1
     6Tested up to: 6.9.1
     7Stable tag: 4.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    103103For more information, see [Weblizar](https://www.weblizar.com/)
    104104
     105= 4.2 =[23-02-2026]
     106* Fixed - single page login/signup issue
     107* Tested upto Wordpress 6.9.1
     108* Tested upto php 8.5.1
     109
    105110= 4.1 =[11-12-2025]
    106111* Tested upto Wordpress 6.9
Note: See TracChangeset for help on using the changeset viewer.