ra00f
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [NSFW] [Weblizar] Child theme breaks after updateSorry, I accidently checked the NSFW box. This post contains no such contents.
Thanks for your reply.
I am able to get the desired table with pagination, both by adding the short code in the page body and by using do_shortcode() function in the template file.
However, the table becomes weird when I set the shop page under woocommerce->settings->products.
That is, when I set the shop page to it, the pagination links get disappear and also the SN column starts couting from -15 to 0.
Why it’s so?
Thanks.
Forum: Themes and Templates
In reply to: [Enigma] Child theme breaks on updateI’ve removed all customised files in to a folder except the header.php file,style.css and functions.php.
Please find the zipped copy of this set at https://drive.google.com/file/d/1iMwW3OmnlKrPXpeE6kNq7dfluOan5TlF/view?usp=sharing
If I replace the header.php file with the one present in the new version, the site loads, but it can’t import the home-page customisation.
Thanks.
- This reply was modified 4 years, 9 months ago by ra00f.
Forum: Themes and Templates
In reply to: [Enigma] Home Page in version 6 after update from 5@homatogen May I know how did you solve the issue?
Forum: Plugins
In reply to: [Accordion and Accordion Slider] Choose random images from the set of imagesThanks for confirming this.
One last question on CSS – not related to the topic (Hope it’s okay to ask here)
In the wp-aas-public.css file, there’s the following rule at the end.
@media only screen and (min-width:320px) and (max-width:568px) { .wpos-tab-slider .as-layer { display:none; } }
May I know why this restriction in that specific width?
Forum: Plugins
In reply to: [Accordion and Accordion Slider] Choose random images from the set of imagesI think, I can alter the class-wp-aas-script.php file and add the following code to achieve my target..
$images = get_post_meta($gallery_id, $prefix.'gallery_id', true); <strong>shuffle($images); $count=1;</strong> ..... foreach( $images as $image ): .... <strong>$count++; if($count==5) break;</strong> endforeach;
But, I believe this is not the right way as I may lose the edits in plugin update.
Forum: Plugins
In reply to: [Accordion and Accordion Slider] Choose random images from the set of imagesThanks for the reply.
It would have been very useful if there’s such a feature so that we don’t need to load all the images to the site (and make the website slow). This will also give the user a new experience on his/her each visit to the site.
Thanks again.
Forum: Plugins
In reply to: [WooCommerce] Product add-ons – multilevel optionsThanks for the quick reply.
I still don’t get how to make it the way I want.
I need to have something like the following in the final markup. That is, the second set need to have a common heading and then sub headings for each. However, all of them share the same name attribute so that selection of one make all the other one deselected.
Hope this is clear now.
<form> <strong>Power type</strong> <input type="radio" value="single_vision" name="power"> <input type="radio" value="zero_power" name="power"> <input type="radio" value="frame_only" name="power"> <strong>Lens type</strong> <strong>Type 1</strong> <input type="radio" value="radio_11" name="lens"> <input type="radio" value="radio_12" name="lens"> <input type="radio" value="radio_13" name="lens"> <input type="radio" value="radio_14" name="lens"> <strong>Type 2</strong> <input type="radio" value="radio_21" name="lens"> <input type="radio" value="radio_22" name="lens"> <input type="radio" value="radio_23" name="lens"> <strong>Type 3</strong> <input type="radio" value="radio_31" name="lens"> ......... </form>
Forum: Fixing WordPress
In reply to: “ERROR : options page not found” – while saving Settings->Reading->Thank you for the reply.
Does it wipe out all the settings I have done over the plugins by deactivating them? Would I need to set them all from scratch?
—————–
Edit:Yeah…! I got it.
I got an advice through google about plugin settings (that they don’t get wiped out) and I deactivated all plugins.
Then activated one by one and caught the culprit. No more warnings too.
PS: WordPress should catch misleading warnings like “Warning: call_user_func_array() expects parameter 1 to be a valid callback, class ‘__CLASS_’ not found in ***/wp-includes/class-wp-hook.php on line 298” and give some hints on plugins ??
Forum: Plugins
In reply to: [Meteor Slides] Slides being hiddenAh.. never mind. There were two slides with no images (perhaps deleted). When I removed them, the slideshow came back.
Did you check the url in the og:image meta?
Also check the size of image (https://www.ads-software.com/support/topic/featured-image-not-shared-on-facebook?replies=13#post-5007557)
In my case, the wordpress was linking to a deleted image (that I tried earlier) in its meta property=”og:image” in the page source.
I just renamed the image that was present in the server to the name of the one shown in that meta property ??
resolved – :sigh
Forum: Themes and Templates
In reply to: [Esquire] [Theme: Esquire] Menus and Search boxA late reply, though here’s the solution.
Remove the highlighted rule from styl.css#search { clear: left; <strong>display: none;</strong> padding-bottom: 2px; padding-left: 0; padding-right: 0; padding-top: 2px; }
Forum: Plugins
In reply to: Control access rights of pagesThank you very much!
I love capa ??