Mohammad Arshad
Forum Replies Created
-
Thanks. For now I’m marking the ticket as RESOLVED.
@tanvirh Thanks for replying. I understand that.
I’ve another issue, when a user purchase three products from different vendor, that includes a license key (digital products), the order completed mail for vendor, can see all the license details, not only his own product, and that cause a privacy issue. Is this also solvable with the premium version ?Forum: Fixing WordPress
In reply to: site downYou should rename or remove the plugin folder with FTP or hosting provider file manager. That is the only way to get back if you are not familiar with WP-CLI.
Forum: Fixing WordPress
In reply to: All pages and posts are displaying as very narrowIn your theme stylesheet, there is a class “.grid-container” that is assigned a max-width of 0px, it should be something like a fixed width like 1280px or something you like.
After removing or correcting it here is a screenshot.

- This reply was modified 5 months ago by Mohammad Arshad. Reason: image doesn't get uploaded, so I used another way
Forum: Fixing WordPress
In reply to: Gallery images offset on iOSKindly mark the topic as RESOLVED.
Forum: Fixing WordPress
In reply to: Gallery images offset on iOS@media only screen and (max-width: 767px) {
.responsive .av-10byk-2b93df5950f6b09515b0150673dfdaf2 .av-horizontal-gallery-img {
transform: none;
top: 0;
}
}Change the above provided css to this one, to be more specific to this area only, and doesn’t affect any other image slider anywhere else. This should solve the image bottom top issue as well.
Forum: Fixing WordPress
In reply to: Gallery images offset on iOS@media only screen and (max-width: 767px) {
.responsive .av-horizontal-gallery-img {
transform: none;
}
}Put this in custom css in your theme and check the issue is solved or not. Otherwise you need to contact your theme support, as the slider is coming from it. We can’t provide help here for Premium themes/plugins.
Forum: Fixing WordPress
In reply to: Gallery images offset on iOSCan you provide a screenshot of the issue, as I didn’t have that issue on my iOS.
Forum: Plugins
In reply to: [Classic Menu in Navigation Block] Current menu Item stays stuckThat does the trick.
BTW Disabling the plugin cache is inside Appeance > Customizer > Menus > Classic… >, not in Appearance > Menus > Classic…
Kindly adjust in the docs or faqs.Forum: Fixing WordPress
In reply to: Stop WordPress From Creating Multiple Images When UploadedHi There, you can use Disable Media Sizes plugin from the ww.wp.xz.cn repo, full details you can find on the plugin page. If that solves the issue, kindly mark the topic as RESOLVED.
Regards,
Mohammad ArshadForum: Developing with WordPress
In reply to: Block editor Doesn’t appear for custom post typeGreat to help you.
Kindly mark the post as RESOLVED.Forum: Developing with WordPress
In reply to: Block editor Doesn’t appear for custom post typeMake sure you are having show_in_rest set to true and support set to at least editor in the CPT registration, and then you don’t need to have the above code ‘use_block_editor_for_post_type’
Like this :'show_in_rest' => true,
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ).Complete CPT Registration Code Example :
function cw_post_type() {
register_post_type( 'portfolio',
// WordPress CPT Options Start
array(
'labels' => array(
'name' => __( 'Portfolio' ),
'singular_name' => __( 'Portfolio' )
),
'has_archive' => true,
'public' => true,
'rewrite' => array('slug' => 'portfolio'),
'show_in_rest' => true, // this is a must
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'comments' ) // at least array('editor') should be there
)
);
}
add_action( 'init', 'cw_post_type' );Forum: Everything else WordPress
In reply to: Problem: text and headers alignment on mobileResponsive editing is not available in Gutenberg natively at the moment, it is on the roadmap if I remember it correct. Till then, you need to use custom css for that with media queries.
Forum: Everything else WordPress
In reply to: Media and foldersIt is not available natively, but you can use plugins like Media Library Organizer (https://ww.wp.xz.cn/plugins/media-library-organizer/) for the free version,
And for free/paid version, I would like to suggest Happy Files ( https://happyfiles.io ) it is free availalable from the main site and paid version is so much affordable and working great. The developer behind it is also so much responsive and good. Note : I’m not affiliated with this, but only a happy userForum: Developing with WordPress
In reply to: code problem in the contentWhat’s the error showing on.
For the quick look, I’ve commented on the pastebin.