how to hide widgets from blogger search results? - widget

click here to view image
How do i hide element from showing in my search result only. I have tried all ways but the css i got to use will only hide on all the pages. I also used different article but it hide widget on specific pages, blog post and not search result!
iam used this code : <b:if cond='data:blog.searchQuery'>widget</b:if>
but not working!

Related

Chrome extension webscraper.io - how does pagination work with selecting "next"

I am trying to scrape tables of a website using the google chrome extension webscraper.io. In the tutorial of the extension, it is documented how to scrape a website with different pages, say, "page 1", "page 2" and "page 3" where each of the pages is directly linked on the main page.
In the example of the website I am trying to scrape, however, there is only a "next" button to access the next site. If I follow the steps in the tutorial and create a link for the "next" page, it will only consider page 1 and 2. Creating a "next" link for each page is not feasible because they are too many. How can I get the webscraper to include all pages? Is there a way to loop through pages using the webscraper extension?
I am aware of this possible duplicate: pagination Chrome web scraper. However, it was not well received and contains no useful answers.
Following the advanced documentation here, the problem is solved by making the "pagination" link a parent of its own. Then, the scraping software will recursively go through all pages and their "next" page. In their words,
To extract items from all of the pagination links including the ones that are not visible at the beginning you need to create another Link selector that selects the pagination links. Figure 2 shows how the link selector should be created in the sitemap. When the scraper opens a category link it will extract items that are available in the page. After that it will find the pagination links and also visit those. If the pagination link selector is made a child to itself it will recursively discover all pagination pages.

embedded logos in menu bars

I want to know how some sites embedded their logos. I was looking at some source of popular sites expecting to see a .svg or image that would display the logo. However I found an <a>elements like:
LOGO NAME logo
How does that above code get transformed into a logo? Is data-gtm-action a custom attribute? Trying to work out what's going on here and I'm new to UI design.
As you can see in this link, you have a class:"logo ... the logo class contains probably some background-image css information.
Edit: and regarding the data attribut, you have a description here: http://www.w3schools.com/tags/att_global_data.asp
This attribute is very convenient to pass values without using input type="hidden".

Regarding WordPress custom homepage

This is more of a process question than coding. I have a custom homepage with logo, menu, footer similar to other pages. But there are few other contents which are different in the homepage, as usual, i.e, a title, a description div, a social links div and a few more, which are only in the home page.
Now the question is, since I want the admin to change this dynamically, how should I easily implement this for the site owner. Should I make a top-level menu named Homepage in WordPress dashboard and add all these meta boxes (with title, description, social fields) on that admin page so that he can fill this in from the back-end or make a custom post-type with the mentioned custom fields? Or should I add a menu under appearance with the relevant fields to be filled.
I am confused about the standard way. I am new to WordPress and just learning. This clarification will help me get a pre-idea. I completed the HTML and now converting the site to WordPress. Just give me a general overview please, nothing detail, I'll get the rest done. I would like to know the difference between the options mentioned above in a nut-shell (what is for what actually) and what is the standard way to add the custom home page fields for the site admin to input page contents easily.
Thanks in advance.
You would need to create a static front page.
https://codex.wordpress.org/Creating_a_Static_Front_Page
Basically you can create a standard page and then from wordpress customizer make that page a front page. Client will edit it from the back end just as any other standard page.

changing html in Galauness template

acausedesbrunettes.com and I am trying to change the HTML code for the navigation bar (home - category) into the individual pages "events" "fashion" "food" "travel" so that my posts using the #events, #fashion, #food, #travel appear on these individual pages. Can anyone help me in how I have to entry this in the template's HTML?
I would also like for the thumbnails to be bigger; how can I adjust this?
And if you place your mouse on a post you see the "comments" section, I would also want to delete this so that the text of the post istelf only shows.
To change the navigation bar, you'll want to use your WordPress admin area, instead of changing HTML code (you could change the HTML code, but you would have to dig and dig to find where it is in the PHP files in your site's directory). Hover over "Appearance" and select "Menus".
For the size of thumbnails, use CSS in the style.css file (hopefully you're using a child theme). And to remove comments, try a plugin called "disable comments".

How to find real address behind html link?

I want to analyze mango.com website. I am interested in the following link.
http://shop.mango.com/US/m/mango/clothing/dresses/day/?m=dresses32&v=Day
I find a viewall link on this page which can display all the items.
http://shop.mango.com/US/all/mango/clothing/#firstitem
It seems the viewall link is the same for other categories.
How to find the real address behind this viewall link?
http://shop.mango.com/US/all/mango/clothing/#firstitem
http://shop.mango.com/US/all/mango/clothing/ is the link.
#firstitem is the id in the page.
Actually it's all in a whole html page, but if you want to display only a part of the page. Just change the css of id display:none to hide other parts.